1
0
mirror of synced 2024-11-27 23:50:49 +01:00
GC-local-server-rewrite/Domain/Config/EventConfig.cs

17 lines
331 B
C#

namespace Domain.Config;
public class EventConfig
{
public const string EVENT_SECTION = "Events";
public bool UseEvents { get; set; }
public List<EventFile> EventFiles { get; set; } = new();
}
public class EventFile
{
public string FileName { get; set; } = string.Empty;
public int Index { get; set; }
}