Sequence/Entities/DeckCard.cs

12 lines
306 B
C#
Raw Permalink Normal View History

2023-04-05 11:01:14 +00:00
namespace Sequence.Entities;
public class DeckCard
{
public Guid Id { get; set; }
2023-04-07 03:29:08 +00:00
public Guid MatchId { get; set; }
2023-04-05 11:01:14 +00:00
public Match Match { get; set; }
2023-04-07 03:29:08 +00:00
public Guid CardId { get; set; }
2023-04-05 11:01:14 +00:00
public Card Card { get; set; }
2023-04-07 19:02:25 +00:00
public bool Dealt { get; set; }
2023-04-05 11:01:14 +00:00
public int Order { get; set; }
}