ProjectGrid/Models/TicTacTocResponse.cs

11 lines
228 B
C#

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; }
}
}