progress
This commit is contained in:
parent
320c06c880
commit
495d6182a4
9
Entities/DeckCard.cs
Normal file
9
Entities/DeckCard.cs
Normal 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; }
|
||||||
|
}
|
@ -6,5 +6,5 @@ public class Match
|
|||||||
public DateTime Created { get; set; }
|
public DateTime Created { get; set; }
|
||||||
public Player PlayerOne { get; set; }
|
public Player PlayerOne { get; set; }
|
||||||
public Player PlayerTwo { get; set; }
|
public Player PlayerTwo { get; set; }
|
||||||
public ICollection<MatchCard> Deck { get; set; }
|
public ICollection<DeckCard> Deck { get; set; }
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user