1
0
mirror of synced 2024-11-24 15:00:16 +01:00
TaikoLocalServer/SharedProject/Models/SongIntroductionData.cs

18 lines
425 B
C#
Raw Normal View History

2022-09-14 14:08:28 +02:00
using System.Text.Json.Serialization;
namespace SharedProject.Models;
2024-03-14 21:37:30 +01:00
public class SongIntroductionData : IVerupNo
2022-09-14 14:08:28 +02:00
{
[JsonPropertyName("setId")]
public uint SetId { get; set; }
[JsonPropertyName("verupNo")]
public uint VerupNo { get; set; }
[JsonPropertyName("mainSongNo")]
public uint MainSongNo { get; set; }
[JsonPropertyName("subSongNo")]
2024-03-14 21:37:30 +01:00
public uint[]? SubSongNoes { get; set; }
2022-09-14 14:08:28 +02:00
}