Sequence/Entities/Player.cs
2023-04-04 22:47:05 -04:00

10 lines
276 B
C#

namespace Sequence.Entities;
public class Player
{
public Guid Id { get; set; }
public User User { get; set; }
//public Hand Hand { get; set; }
public ICollection<HandCard> HandCards { get; set; }
public ICollection<PlayerCard> PlayerCards { get; set; }
}