about summary refs log tree commit diff
path: root/OsuFederatedBeatmapApi/Services/FederatedBeatmapApiBotConfiguration.cs
blob: b77cd752d108cd4b2f3f4307d0e2545ef539cc43 (plain) (blame)
1
2
3
4
5
6
7
8
namespace OsuFederatedBeatmapApi.Services;

public class FederatedBeatmapApiBotConfiguration {
    public FederatedBeatmapApiBotConfiguration(IConfiguration config) => config.GetRequiredSection("BeatmapApiBot").Bind(this);

    public List<string> Admins { get; set; } = new();
    public bool DemoMode { get; set; } = false;
}