14 lines
319 B
C#
14 lines
319 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ProjectGrid.Models
|
|
{
|
|
public class TicTacTocResponse
|
|
{
|
|
public List<int> Board { get; set; }
|
|
public List<int> Winning { get; set; }
|
|
public int NextPlayer { get; set; }
|
|
public int PlayerWon { get; set; }
|
|
public List<int> PlayerScore { get; set; }
|
|
|
|
}
|
|
} |