// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable enable using System; using System.Collections.Generic; using System.Linq; using MessagePack; using osu.Game.Online.API; namespace osu.Game.Online.Rooms { [Serializable] [MessagePackObject] public class APIPlaylistItem { [Key(0)] public long ID { get; set; } [Key(1)] public int BeatmapID { get; set; } [Key(2)] public string BeatmapChecksum { get; set; } = string.Empty; [Key(3)] public int RulesetID { get; set; } [Key(4)] public IEnumerable RequiredMods { get; set; } = Enumerable.Empty(); [Key(5)] public IEnumerable AllowedMods { get; set; } = Enumerable.Empty(); [Key(6)] public bool Expired { get; set; } public APIPlaylistItem() { } public APIPlaylistItem(PlaylistItem item) { ID = item.ID; BeatmapID = item.BeatmapID; BeatmapChecksum = item.Beatmap.Value?.MD5Hash ?? string.Empty; RulesetID = item.RulesetID; RequiredMods = item.RequiredMods.Select(m => new APIMod(m)).ToArray(); AllowedMods = item.AllowedMods.Select(m => new APIMod(m)).ToArray(); Expired = item.Expired; } } }