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

10 lines
223 B
C#

namespace Gameboard.ShogiUI.Sockets.ServiceModels.Types
{
public class Piece
{
public bool IsPromoted { get; set; }
public WhichPiece WhichPiece { get; set; }
public WhichPlayer Owner { get; set; }
}
}