mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
14 lines
345 B
C#
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; }
|
|
} |