This commit is contained in:
Ryan Peters 2023-04-05 07:01:14 -04:00
parent 320c06c880
commit 495d6182a4
2 changed files with 10 additions and 1 deletions

9
Entities/DeckCard.cs Normal file
View File

@ -0,0 +1,9 @@
namespace Sequence.Entities;
public class DeckCard
{
public Guid Id { get; set; }
public Match Match { get; set; }
public Card Card { get; set; }
public int Order { get; set; }
}

View File

@ -6,5 +6,5 @@ public class Match
public DateTime Created { get; set; }
public Player PlayerOne { get; set; }
public Player PlayerTwo { get; set; }
public ICollection<MatchCard> Deck { get; set; }
public ICollection<DeckCard> Deck { get; set; }
}