1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-22 10:12:54 +08:00
osu-lazer/osu.Game/Online/Multiplayer/MatchRulesets/TeamVs/MultiplayerTeam.cs
2021-08-02 18:47:26 +09:00

22 lines
481 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;
#nullable enable
namespace osu.Game.Online.Multiplayer.MatchRulesets.TeamVs
{
[Serializable]
[MessagePackObject]
public class MultiplayerTeam
{
[Key(0)]
public int ID { get; set; }
[Key(1)]
public string Name { get; set; } = string.Empty;
}
}