Sequence/Entities/Match.cs

10 lines
263 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; }
public Player PlayerOne { get; set; }
public Player PlayerTwo { get; set; }
2023-04-05 11:01:14 +00:00
public ICollection<DeckCard> Deck { get; set; }
2023-04-04 02:15:41 +00:00
}