Files
EstusShots-Net/EstusShots.Shared/Dto/Season.cs

23 lines
459 B
C#

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