1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-06 16:17:20 +02:00
Radarr/NzbDrone.Web/Models/SeasonModel.cs

14 lines
392 B
C#
Raw Normal View History

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