2013-01-29 02:59:18 +01:00
|
|
|
|
using System.Collections.Generic;
|
2013-02-05 05:07:07 +01:00
|
|
|
|
using NzbDrone.Core.Datastore;
|
2013-02-17 05:33:56 +01:00
|
|
|
|
using Sqo.Attributes;
|
2011-03-09 08:40:48 +01:00
|
|
|
|
|
2013-02-05 05:07:07 +01:00
|
|
|
|
namespace NzbDrone.Core.RootFolders
|
2011-03-09 08:40:48 +01:00
|
|
|
|
{
|
2013-02-18 04:18:25 +01:00
|
|
|
|
public class RootFolder : ModelBase
|
2011-03-09 08:40:48 +01:00
|
|
|
|
{
|
|
|
|
|
public string Path { get; set; }
|
2011-10-15 20:54:39 +02:00
|
|
|
|
|
2013-02-17 05:33:56 +01:00
|
|
|
|
[Ignore]
|
2011-10-15 20:54:39 +02:00
|
|
|
|
public ulong FreeSpace { get; set; }
|
2013-01-29 02:59:18 +01:00
|
|
|
|
|
2013-02-18 02:45:14 +01:00
|
|
|
|
public List<UnmappedFolder> UnmappedFolders { get; set; }
|
2011-03-09 08:40:48 +01:00
|
|
|
|
}
|
2011-04-10 04:44:01 +02:00
|
|
|
|
}
|