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
|
|
|
|
}
|