Sequence/Entities/Player.cs

11 lines
314 B
C#
Raw Permalink Normal View History

2023-04-04 02:15:41 +00:00
namespace Sequence.Entities;
public class Player
{
public Guid Id { get; set; }
2023-04-07 03:29:08 +00:00
public Guid UserId { get; set; }
2023-04-04 02:15:41 +00:00
public User User { get; set; }
2023-04-07 03:29:08 +00:00
public string Alias { get; set; }
2023-04-05 02:47:05 +00:00
public ICollection<HandCard> HandCards { get; set; }
2023-04-05 01:58:24 +00:00
public ICollection<PlayerCard> PlayerCards { get; set; }
2023-04-04 02:15:41 +00:00
}