mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-01 16:06:24 +02:00
Added more stubbed mothods and providers
This commit is contained in:
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user