aboutsummaryrefslogtreecommitdiff
path: root/DotnetPgn/Models/Enums.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DotnetPgn/Models/Enums.cs')
-rw-r--r--DotnetPgn/Models/Enums.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/DotnetPgn/Models/Enums.cs b/DotnetPgn/Models/Enums.cs
new file mode 100644
index 0000000..893f2fa
--- /dev/null
+++ b/DotnetPgn/Models/Enums.cs
@@ -0,0 +1,18 @@
+namespace DotnetPgn.Models
+{
+ public enum Piece
+ {
+ Pawn,
+ Knight,
+ Bishop,
+ Rook,
+ Queen,
+ King,
+ }
+
+ public enum Player
+ {
+ White,
+ Black,
+ }
+} \ No newline at end of file