2013-01-29 04:59:18 +03:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using PetaPoco;
|
2011-03-09 09:40:48 +02:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
|
|
{
|
2011-06-17 18:27:18 +03:00
|
|
|
[TableName("RootDirs")]
|
|
|
|
[PrimaryKey("Id", autoIncrement = true)]
|
2011-03-09 09:40:48 +02:00
|
|
|
public class RootDir
|
|
|
|
{
|
2011-03-31 04:42:27 +03:00
|
|
|
public virtual int Id { get; set; }
|
2011-03-09 09:40:48 +02:00
|
|
|
|
|
|
|
public string Path { get; set; }
|
2011-10-15 21:54:39 +03:00
|
|
|
|
|
|
|
[ResultColumn]
|
|
|
|
public ulong FreeSpace { get; set; }
|
2013-01-29 04:59:18 +03:00
|
|
|
|
|
|
|
[Ignore]
|
|
|
|
public List<string> UnmappedFolders { get; set; }
|
2011-03-09 09:40:48 +02:00
|
|
|
}
|
2011-04-10 05:44:01 +03:00
|
|
|
}
|