aboutsummaryrefslogtreecommitdiff
path: root/DotnetPgn/Models/HalfMove.cs
blob: b94d77df5a2347c6358c9a3cb9f22011c235aa6f (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace DotnetPgn.Models
{
    public record HalfMove
    {
        public int MoveNumber {get; init;}
        public Player Player { get; init; }
        public Piece Piece { get; init; }
        public Square SourceSquare { get; init; }
        public Square TargetSquare { get; init; }
    }
}