1
0
mirror of synced 2025-01-10 04:01:46 +01:00

21 lines
473 B
C#
Raw Normal View History

2023-09-09 21:58:20 +09:00
using System.Text.Json.Serialization;
namespace SharedProject.Models;
2024-03-15 04:37:30 +08:00
public class EventFolderData : IVerupNo
2023-09-09 21:58:20 +09:00
{
[JsonPropertyName("folderId")]
public uint FolderId { get; set; }
2023-09-09 21:58:20 +09:00
[JsonPropertyName("verupNo")]
public uint VerupNo { get; set; }
2023-09-09 21:58:20 +09:00
[JsonPropertyName("priority")]
public uint Priority { get; set; }
2023-09-09 21:58:20 +09:00
[JsonPropertyName("songNo")]
2024-03-15 04:37:30 +08:00
public uint[]? SongNoes { get; set; }
[JsonPropertyName("parentFolderId")]
public uint ParentFolderId { get; set; }
2023-09-09 21:58:20 +09:00
}