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