You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/NzbDrone.Web/Models/SeasonModel.cs

14 lines
392 B

using System.Collections.Generic;
namespace NzbDrone.Web.Models
{
public class SeasonModel
{
public int SeriesId { get; set; }
public int SeasonNumber { get; set; }
public List<EpisodeModel> Episodes { get; set; }
public bool AnyWanted { get; set; }
public string CommonStatus { get; set; }
public bool Ignored { get; set; }
}
}