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