Scoreboard/ScoreboardApi/Controllers/StartGameRequest.cs
2025-01-08 09:39:14 +00:00

12 lines
285 B
C#

namespace ScoreboardApi.Controllers
{
using ScoreboardApi.Objects;
public class StartGameRequest
{
public Team Home { get; set; }
public Team Away { get; set; }
public DateTimeOffset KickOffTime { get; set; }
}
//Add Export.
}