namespace Sequence.Entities; public class Player { public Guid Id { get; set; } public User User { get; set; } public ICollection HandCards { get; set; } public ICollection PlayerCards { get; set; } }