mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
SeasonProvider Added to handle ignoring of Seasons.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user