mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02: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; }
|
|
}
|
|
} |