Sequence/Entities/Player.cs
2023-04-06 23:29:08 -04:00

11 lines
314 B
C#

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