From 3accd5c6d204470ae3cc3bc5847bce17c982f7ae Mon Sep 17 00:00:00 2001 From: Ryan Date: Wed, 5 Apr 2023 06:00:28 -0400 Subject: [PATCH] entity cleanup --- Entities/Hand.cs | 8 -------- Entities/Player.cs | 1 - 2 files changed, 9 deletions(-) delete mode 100644 Entities/Hand.cs diff --git a/Entities/Hand.cs b/Entities/Hand.cs deleted file mode 100644 index 6defa84..0000000 --- a/Entities/Hand.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace Sequence.Entities; - -public class Hand -{ - public Guid Id { get; set; } - //public Player Player { get; set; } - public ICollection Cards { get; set; } -} \ No newline at end of file diff --git a/Entities/Player.cs b/Entities/Player.cs index 853b249..f6874d8 100644 --- a/Entities/Player.cs +++ b/Entities/Player.cs @@ -4,7 +4,6 @@ public class Player { public Guid Id { get; set; } public User User { get; set; } - //public Hand Hand { get; set; } public ICollection HandCards { get; set; } public ICollection PlayerCards { get; set; } } \ No newline at end of file