Added more stubbed mothods and providers

This commit is contained in:
Keivan 2010-09-28 13:44:33 -07:00
commit bca2e0c6b1
7 changed files with 75 additions and 3 deletions

View 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; }
}
}