1
0
mirror of synced 2024-11-24 04:20:10 +01:00
TaikoSoundEditor/Data/IMusicOrder.cs
2023-10-01 19:40:41 +03:00

18 lines
394 B
C#

using System.Text.Json.Serialization;
using TaikoSoundEditor.Commons.Utils;
namespace TaikoSoundEditor.Data
{
public interface IMusicOrder
{
int GenreNo { get; set; }
string Id { get; set; }
int UniqueId { get; set; }
int CloseDispType { get; set; }
[JsonIgnore]
[Recast("GenreNo")]
Genre Genre { get; set; }
}
}