2013-01-28 17:59:18 -08:00
|
|
|
using System.Collections.Generic;
|
2013-02-04 20:07:07 -08:00
|
|
|
using NzbDrone.Core.Datastore;
|
2013-03-23 21:16:00 -07:00
|
|
|
|
2011-03-08 23:40:48 -08:00
|
|
|
|
2013-02-04 20:07:07 -08:00
|
|
|
namespace NzbDrone.Core.RootFolders
|
2011-03-08 23:40:48 -08:00
|
|
|
{
|
2013-02-17 19:18:25 -08:00
|
|
|
public class RootFolder : ModelBase
|
2011-03-08 23:40:48 -08:00
|
|
|
{
|
|
|
|
public string Path { get; set; }
|
2011-10-15 11:54:39 -07:00
|
|
|
|
2013-04-29 23:11:49 -07:00
|
|
|
public long FreeSpace { get; set; }
|
2013-01-28 17:59:18 -08:00
|
|
|
|
2013-02-17 17:45:14 -08:00
|
|
|
public List<UnmappedFolder> UnmappedFolders { get; set; }
|
2011-03-08 23:40:48 -08:00
|
|
|
}
|
2011-04-09 19:44:01 -07:00
|
|
|
}
|