Sequence/Entities/DeckCard.cs
2023-04-07 15:02:25 -04:00

12 lines
306 B
C#

namespace Sequence.Entities;
public class DeckCard
{
public Guid Id { get; set; }
public Guid MatchId { get; set; }
public Match Match { get; set; }
public Guid CardId { get; set; }
public Card Card { get; set; }
public bool Dealt { get; set; }
public int Order { get; set; }
}