namespace OsuFederatedBeatmapApi.Services; public class FederatedBeatmapApiBotConfiguration { public FederatedBeatmapApiBotConfiguration(IConfiguration config) => config.GetRequiredSection("BeatmapApiBot").Bind(this); public List Admins { get; set; } = new(); public bool DemoMode { get; set; } = false; }