// 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 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; } }