using SharedLibraryCore.Interfaces; using System; using System.Collections.Generic; using System.Text; namespace SharedLibraryCore.Configuration { public class DefaultConfiguration : IBaseConfiguration { public int AutoMessagePeriod { get; set; } public List AutoMessages { get; set; } public List GlobalRules { get; set; } public List Maps { get; set; } public IBaseConfiguration Generate() => this; public string Name() => "DefaultConfiguration"; } }