1
0
mirror of synced 2024-11-14 18:38:06 +01:00
TaikoLocalServer/SharedProject/Models/SongIntroductionData.cs
2024-03-15 04:37:30 +08:00

18 lines
425 B
C#

using System.Text.Json.Serialization;
namespace SharedProject.Models;
public class SongIntroductionData : IVerupNo
{
[JsonPropertyName("setId")]
public uint SetId { get; set; }
[JsonPropertyName("verupNo")]
public uint VerupNo { get; set; }
[JsonPropertyName("mainSongNo")]
public uint MainSongNo { get; set; }
[JsonPropertyName("subSongNo")]
public uint[]? SubSongNoes { get; set; }
}