about summary refs log tree commit diff
path: root/ExampleBots/MediaModeratorPoC/Bot/AccountData/BotData.cs
blob: b4e1167327fc6ab5cb6ffaf2300068f00e991475 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Text.Json.Serialization;

namespace MediaModeratorPoC.Bot.AccountData;

public class BotData {
    [JsonPropertyName("control_room")]
    public string ControlRoom { get; set; } = "";

    [JsonPropertyName("log_room")]
    public string? LogRoom { get; set; } = "";

    [JsonPropertyName("policy_room")]
    public string? PolicyRoom { get; set; } = "";
}