1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-13 07:13:39 +08:00
Files
osu-lazer/osu.Game/Online/RankedPlay/RankedPlayCardHandReplayRequest.cs
T
2026-01-28 13:42:59 +09:00

18 lines
478 B
C#

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using MessagePack;
using osu.Game.Online.Multiplayer;
namespace osu.Game.Online.RankedPlay
{
[Serializable]
[MessagePackObject]
public class RankedPlayCardHandReplayRequest : MatchUserRequest
{
[Key(0)]
public required RankedPlayCardHandReplayFrame[] Frames { get; init; }
}
}