Sequence/Entities/Match.cs
2023-04-03 22:15:41 -04:00

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