Sequence/Entities/Match.cs

10 lines
264 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 02:47:05 +00:00
public ICollection<MatchCard> Deck { get; set; }
2023-04-04 02:15:41 +00:00
}