1
0
mirror of synced 2024-12-18 17:25:54 +01:00
GC-local-server-rewrite/Domain/Config/EventConfig.cs

17 lines
331 B
C#
Raw Normal View History

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; }
}