Sequence/Entities/Match.cs
2023-04-04 22:47:05 -04:00

10 lines
264 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<MatchCard> Deck { get; set; }
}