moved rootdir to eloquera

This commit is contained in:
kay.one 2013-02-03 20:18:59 -08:00
commit 9e4bb278ef
35 changed files with 398 additions and 565 deletions

View file

@ -3,9 +3,21 @@ using PetaPoco;
namespace NzbDrone.Core.Repository
{
public interface IRootDir
{
int Id { get; set; }
string Path { get; set; }
[ResultColumn]
ulong FreeSpace { get; set; }
[Ignore]
List<string> UnmappedFolders { get; set; }
}
[TableName("RootDirs")]
[PrimaryKey("Id", autoIncrement = true)]
public class RootDir
public class RootDir : IRootDir
{
public virtual int Id { get; set; }