mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Added more stubbed mothods and providers
This commit is contained in:
parent
8d47bcbe5e
commit
bca2e0c6b1
7 changed files with 75 additions and 3 deletions
16
NzbDrone.Core/Repository/Season.cs
Normal file
16
NzbDrone.Core/Repository/Season.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
using System.ServiceModel.Syndication;
|
||||
using SubSonic.SqlGeneration.Schema;
|
||||
|
||||
namespace NzbDrone.Core.Repository
|
||||
{
|
||||
public class Season
|
||||
{
|
||||
[SubSonicPrimaryKey]
|
||||
public string SeasonId { get; set; }
|
||||
public long SeriesId { get; set; }
|
||||
public int SeasonNumber { get; set; }
|
||||
public bool Monitored { get; set; }
|
||||
public string Folder { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue