mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
22 lines
612 B
C#
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; }
|
|
}
|
|
}
|