11 lines
249 B
C#
11 lines
249 B
C#
using Shogi.Domain;
|
|
|
|
namespace Shogi.Api.Repositories.Dto;
|
|
|
|
/// <summary>
|
|
/// Useful with Dapper to read from database.
|
|
/// </summary>
|
|
public readonly record struct MoveDto(string From, string To, bool IsPromotion, WhichPiece? PieceFromHand)
|
|
{
|
|
}
|