14 lines
333 B
C#
14 lines
333 B
C#
namespace ProjectGrid.Models
|
|
{
|
|
public class TicTacTocRequest
|
|
{
|
|
//public int PosX { get; set; }
|
|
|
|
//public int PosY { get; set; }
|
|
public int Field { get; set; }
|
|
|
|
public int Player { get; set; }
|
|
|
|
public string DebugString() => $"Field: {Field}, Player: {Player}";//$"Pos: [{PosX}|{PosY}; Player: {Player}";
|
|
}
|
|
} |