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