about summary refs log tree commit diff
path: root/Utilities/LibMatrix.Utilities.Bot/LibMatrixBotConfiguration.cs
blob: d60dc92b1bbe3986e0d94a150c7d253c61adb78a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using Microsoft.Extensions.Configuration;

namespace LibMatrix.Utilities.Bot;

public class LibMatrixBotConfiguration {
    public LibMatrixBotConfiguration(IConfiguration config) => config.GetRequiredSection("LibMatrixBot").Bind(this);
    public string Homeserver { get; set; }
    public string? AccessToken { get; set; }
    public string? AccessTokenPath { get; set; }
    public List<string> Prefixes { get; set; }
    public bool MentionPrefix { get; set; }
    public string? LogRoom { get; set; }
    public bool SelfCommandsOnly { get; set; } = true;
}