using Shogi.Domain; namespace Shogi.Api.Repositories.Dto; /// /// Useful with Dapper to read from database. /// public readonly record struct MoveDto(string From, string To, bool IsPromotion, WhichPiece? PieceFromHand) { }