mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
aac42d4882
Fix: Season Ignore is handled separately from Episode Ignore.
14 lines
392 B
C#
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; }
|
|
}
|
|
} |