about summary refs log tree commit diff
path: root/OsuFederatedBeatmapApi/Events/AccountData/BotData.cs
blob: 0c9744af195ac02247e32e3ab8508c9053371542 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using System.Text.Json.Serialization;

namespace OsuFederatedBeatmapApi.Events.AccountData;

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

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