Files
EstusShots-Net/EstusShots.Shared/Models/Season.cs
2020-02-26 21:50:58 +01:00

21 lines
428 B
C#

using System;
namespace EstusShots.Shared.Models
{
public class Season
{
public Guid SeasonId { get; set; }
public int Number { get; set; }
public string Game { get; set; } = default!;
public string? Description { get; set; }
public DateTime Start { get; set; }
public DateTime? End { get; set; }
public string DisplayName => $"S{Number:D2} {Game}";
}
}