progress, building services

This commit is contained in:
2023-04-04 21:58:24 -04:00
parent aa20adb295
commit 281608beeb
10 changed files with 2143 additions and 4 deletions

View File

@ -5,5 +5,5 @@ public class Player
public Guid Id { get; set; }
public User User { get; set; }
public Hand Hand { get; set; }
public ICollection<LayoutCard> PlayedCards { get; set; }
public ICollection<PlayerCard> PlayerCards { get; set; }
}

View File

@ -1,6 +1,6 @@
namespace Sequence.Entities;
public class LayoutCard
public class PlayerCard
{
public Guid Id { get; set; }
public Card Card { get; set; }