1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 16:31:43 +02:00
Radarr/NzbDrone.Web/Models/SeasonModel.cs
Mark McDowall aac42d4882 More Season ignore work. Already ignored seasons will be ignored.
Fix: Season Ignore is handled separately from Episode Ignore.
2012-02-20 22:50:38 -08:00

14 lines
392 B
C#

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; }
}
}