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

18 lines
394 B
C#
Raw Normal View History

2023-10-01 18:40:41 +02:00
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; }
}
}