entity cleanup

This commit is contained in:
Ryan Peters 2023-04-05 06:00:28 -04:00
parent 0896feb367
commit 3accd5c6d2
2 changed files with 0 additions and 9 deletions

View File

@ -1,8 +0,0 @@
namespace Sequence.Entities;
public class Hand
{
public Guid Id { get; set; }
//public Player Player { get; set; }
public ICollection<Card> Cards { get; set; }
}

View File

@ -4,7 +4,6 @@ public class Player
{ {
public Guid Id { get; set; } public Guid Id { get; set; }
public User User { get; set; } public User User { get; set; }
//public Hand Hand { get; set; }
public ICollection<HandCard> HandCards { get; set; } public ICollection<HandCard> HandCards { get; set; }
public ICollection<PlayerCard> PlayerCards { get; set; } public ICollection<PlayerCard> PlayerCards { get; set; }
} }