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