using MessagePack; namespace Game.TicTacToe; /// /// Identifies a board position. One entity per cell. /// [MessagePackObject] public record struct Cell { [Key(0)] public int Row; [Key(1)] public int Col; }