RootDirs moved to PetaPoco. Removed SubSonic references from EpisodeFile & SceneMapping.

This commit is contained in:
Mark McDowall
2011-06-17 08:27:18 -07:00
parent 2a32770b69
commit f7ee16dbba
6 changed files with 31 additions and 31 deletions

View File

@@ -1,10 +1,11 @@
using SubSonic.SqlGeneration.Schema;
using PetaPoco;
namespace NzbDrone.Core.Repository
{
[TableName("RootDirs")]
[PrimaryKey("Id", autoIncrement = true)]
public class RootDir
{
[SubSonicPrimaryKey]
public virtual int Id { get; set; }
public string Path { get; set; }