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