10 lines
228 B
C#
10 lines
228 B
C#
namespace Gameboard.ShogiUI.Sockets.ServiceModels.Types
|
|
{
|
|
public class Piece
|
|
{
|
|
public bool IsPromoted { get; set; }
|
|
public WhichPiece WhichPiece { get; set; }
|
|
public WhichPerspective Owner { get; set; }
|
|
}
|
|
}
|