ProjectGrid/Models/TicTacTocResponse.cs

11 lines
189 B
C#

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