Sequence/Entities/Match.cs

9 lines
211 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; }
}