using System.Collections.Generic; namespace ProjectGrid.Models { public class TicTacTocResponse { public List Board { get; set; } public int NextPlayer { get; set; } public int PlayerWon { get; set; } } }