Files
DanhengServer-OpenSource/Common/Data/Custom/ActivityConfig.cs
Somebody 87d228eb79 Feature:Asynchronous Operation & Formatting Code
- Now the async operation is enabled!
- Code formatted by Resharper plugin <3
2024-07-22 17:12:03 +08:00

14 lines
345 B
C#

namespace EggLink.DanhengServer.Data.Custom;
public class ActivityConfig
{
public List<ActivityScheduleData> ScheduleData { get; set; } = [];
}
public class ActivityScheduleData
{
public int ActivityId { get; set; }
public long BeginTime { get; set; }
public long EndTime { get; set; }
public int PanelId { get; set; }
}