diff options
Diffstat (limited to 'OsuFederatedBeatmapApi/Events/AccountData/BotData.cs')
-rw-r--r-- | OsuFederatedBeatmapApi/Events/AccountData/BotData.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OsuFederatedBeatmapApi/Events/AccountData/BotData.cs b/OsuFederatedBeatmapApi/Events/AccountData/BotData.cs index 0c9744a..1eccf03 100644 --- a/OsuFederatedBeatmapApi/Events/AccountData/BotData.cs +++ b/OsuFederatedBeatmapApi/Events/AccountData/BotData.cs @@ -8,4 +8,7 @@ public class BotData { [JsonPropertyName("log_room")] public string? LogRoom { get; set; } = ""; + + [JsonPropertyName("listed_repositories")] + public List<string> ListedRepositories { get; set; } = new(); } |