// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using Newtonsoft.Json; namespace osu.Game.Online.API.Requests.Responses { public class PutBeatmapSetResponse { [JsonProperty("beatmapset_id")] public uint BeatmapSetId { get; set; } [JsonProperty("beatmap_ids")] public ICollection BeatmapIds { get; set; } = Array.Empty(); [JsonProperty("files")] public ICollection Files { get; set; } = Array.Empty(); } public struct BeatmapSetFile { [JsonProperty("filename")] public string Filename { get; set; } [JsonProperty("sha2_hash")] public string SHA2Hash { get; set; } } }