mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
SeasonProvider Added to handle ignoring of Seasons.
This commit is contained in:
parent
d27f14d7aa
commit
969f8ae5e2
10 changed files with 265 additions and 186 deletions
16
NzbDrone.Core/Repository/Season.cs
Normal file
16
NzbDrone.Core/Repository/Season.cs
Normal file
|
@ -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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue