10 lines
199 B
C#
10 lines
199 B
C#
namespace Shogi.Contracts.Types
|
|
{
|
|
public class Piece
|
|
{
|
|
public bool IsPromoted { get; set; }
|
|
public WhichPiece WhichPiece { get; set; }
|
|
public WhichPlayer Owner { get; set; }
|
|
}
|
|
}
|