2023-09-09 14:58:20 +02:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace SharedProject.Models;
|
|
|
|
|
|
|
|
|
|
public class EventFolderData
|
|
|
|
|
{
|
2023-09-23 01:34:23 +02:00
|
|
|
|
[JsonPropertyName("folderId")]
|
|
|
|
|
public uint FolderId { get; set; }
|
2023-09-09 14:58:20 +02:00
|
|
|
|
|
2023-09-23 01:34:23 +02:00
|
|
|
|
[JsonPropertyName("verupNo")]
|
|
|
|
|
public uint VerupNo { get; set; }
|
2023-09-09 14:58:20 +02:00
|
|
|
|
|
2023-09-23 01:34:23 +02:00
|
|
|
|
[JsonPropertyName("priority")]
|
|
|
|
|
public uint Priority { get; set; }
|
2023-09-09 14:58:20 +02:00
|
|
|
|
|
2023-09-23 01:34:23 +02:00
|
|
|
|
[JsonPropertyName("songNo")]
|
|
|
|
|
public uint[]? SongNo { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("parentFolderId")]
|
|
|
|
|
public uint ParentFolderId { get; set; }
|
2023-09-09 14:58:20 +02:00
|
|
|
|
}
|