Sequence/Entities/Match.cs
2023-04-05 07:01:14 -04:00

10 lines
263 B
C#

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; }
public ICollection<DeckCard> Deck { get; set; }
}