about summary refs log tree commit diff
path: root/ExampleBots/MediaModeratorPoC/Bot/AccountData/BotData.cs
blob: 9b92948fd6bd75f45327e601234689ba30f33dda (plain) (blame)
1
2
3
4
5
6
7
namespace MediaModeratorPoC.Bot.AccountData;

public class BotData {
    public string ControlRoom { get; set; } = "";
    public string? LogRoom { get; set; } = "";
    public string? PolicyRoom { get; set; } = "";
}