using Shogi.Domain.ValueObjects; 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) { }