Files
Shogi/Gameboard.ShogiUI.Sockets/Repositories/CouchModels/Piece.cs
2022-06-12 12:37:32 -05:00

12 lines
240 B
C#

using Shogi.Domain;
namespace Gameboard.ShogiUI.Sockets.Repositories.CouchModels
{
public class Piece
{
public bool IsPromoted { get; set; }
public WhichPlayer Owner { get; set; }
public WhichPiece WhichPiece { get; set; }
}
}