Files
DanhengServer-OpenSource/Common/Data/Custom/VideoKeysConfig.cs
2024-10-27 17:03:27 +08:00

22 lines
612 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; }
}
}