Files
Shogi/Shogi.Sockets/Repositories/Dto/SessionDto.cs
2022-10-31 08:08:58 -05:00

15 lines
342 B
C#

namespace Shogi.Api.Repositories.Dto
{
/// <summary>
/// Useful with Dapper to read from database.
/// </summary>
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; }
}
}