1
0
mirror of synced 2025-02-21 13:00:03 +01:00
TaikoSoundEditor/Data/IMusicOrder.cs

18 lines
394 B
C#
Raw Normal View History

2023-10-01 19:40:41 +03: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; }
}
}