Files
Shogi/Shogi.Sockets/Repositories/Dto/SessionDto.cs
2022-10-30 18:36:23 -05:00

12 lines
264 B
C#

namespace Shogi.Api.Repositories.Dto
{
public class SessionDto
{
public string Name { get; set; }
public string Player1 { get; set; }
public string Player2 { get; set; }
public bool GameOver { get; set; }
public string BoardState { get; set; }
}
}