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