18 lines
425 B
C#
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; }
|
|
} |