diff options
Diffstat (limited to 'OsuFederatedBeatmapApi/Events')
-rw-r--r-- | OsuFederatedBeatmapApi/Events/AccountData/BotData.cs | 11 | ||||
-rw-r--r-- | OsuFederatedBeatmapApi/Events/State/BeatmapSetInfo.cs | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/OsuFederatedBeatmapApi/Events/AccountData/BotData.cs b/OsuFederatedBeatmapApi/Events/AccountData/BotData.cs new file mode 100644 index 0000000..0c9744a --- /dev/null +++ b/OsuFederatedBeatmapApi/Events/AccountData/BotData.cs @@ -0,0 +1,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; } = ""; +} diff --git a/OsuFederatedBeatmapApi/Events/State/BeatmapSetInfo.cs b/OsuFederatedBeatmapApi/Events/State/BeatmapSetInfo.cs new file mode 100644 index 0000000..2c9367e --- /dev/null +++ b/OsuFederatedBeatmapApi/Events/State/BeatmapSetInfo.cs @@ -0,0 +1,11 @@ +using LibMatrix; +using LibMatrix.EventTypes; + +namespace OsuFederatedBeatmapApi.Events.State; + +[MatrixEvent(EventName = "gay.rory.beatmap_api.beatmap_set_info")] +public class BeatmapSetInfo : StateEvent { + + + +} |