using MessagePack; namespace Game.CardWars; /// /// A castle that can be won each round. /// [MessagePackObject] public record struct Castle { [Key(0)] public CastleColor Color; }