Files
DanhengServer-OpenSource/Common/Data/Custom/VideoKeysConfig.cs
2024-11-16 19:16:00 +08:00

20 lines
545 B
C#

namespace EggLink.DanhengServer.Data.Custom;
public class VideoKeysConfig
{
public List<ActivityVideoKeyInfoList> ActivityVideoKeyData { get; set; } = new();
public List<VideoKeyInfoList> VideoKeyInfoData { get; set; } = new();
public int TotalCount => ActivityVideoKeyData.Count + VideoKeyInfoData.Count;
}
public class ActivityVideoKeyInfoList
{
public int Id { get; set; }
public ulong VideoKey { get; set; }
}
public class VideoKeyInfoList
{
public int Id { get; set; }
public ulong VideoKey { get; set; }
}