mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
aac42d4882
Fix: Season Ignore is handled separately from Episode Ignore.
20 lines
498 B
C#
20 lines
498 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.Model;
|
|
using PetaPoco;
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
{
|
|
[TableName("Seasons")]
|
|
[PrimaryKey("SeasonId", autoIncrement = true)]
|
|
public class Season
|
|
{
|
|
public int SeasonId { get; set; }
|
|
public int SeriesId { get; set; }
|
|
public int SeasonNumber { get; set; }
|
|
public Boolean Ignored { get; set; }
|
|
|
|
[ResultColumn]
|
|
public List<Episode> Episodes { get; set; }
|
|
}
|
|
} |