Files
Shogi/Gameboard.ShogiUI.Sockets.ServiceModels/Types/Piece.cs
2021-08-01 17:32:43 -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; }
}
}