Sequence/Entities/Match.cs

13 lines
397 B
C#
Raw Normal View History

2023-04-04 02:15:41 +00:00
namespace Sequence.Entities;
public class Match
{
public Guid Id { get; set; }
public DateTime Created { get; set; }
2023-04-07 03:29:08 +00:00
public Guid PlayerOneId { get; set; }
2023-04-04 02:15:41 +00:00
public Player PlayerOne { get; set; }
2023-04-07 03:29:08 +00:00
public Guid PlayerTwoId { get; set; }
2023-04-04 02:15:41 +00:00
public Player PlayerTwo { get; set; }
2023-04-07 03:29:08 +00:00
public Guid CurrentTurnPlayerId { get; set; }
2023-04-05 11:01:14 +00:00
public ICollection<DeckCard> Deck { get; set; }
2023-04-04 02:15:41 +00:00
}