11 lines
314 B
C#
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; }
|
|
} |