2018-02-02 01:58:55 +00:00
|
|
|
using System.Collections.Generic;
|
2013-02-05 04:07:07 +00:00
|
|
|
using NzbDrone.Core.Datastore;
|
2013-03-24 04:16:00 +00:00
|
|
|
|
2013-02-05 04:07:07 +00:00
|
|
|
namespace NzbDrone.Core.RootFolders
|
2011-03-09 07:40:48 +00:00
|
|
|
{
|
2013-02-18 03:18:25 +00:00
|
|
|
public class RootFolder : ModelBase
|
2011-03-09 07:40:48 +00:00
|
|
|
{
|
|
|
|
public string Path { get; set; }
|
2011-10-15 18:54:39 +00:00
|
|
|
|
2019-08-27 21:48:34 +00:00
|
|
|
public bool Accessible { get; set; }
|
2013-09-01 04:38:06 +00:00
|
|
|
public long? FreeSpace { get; set; }
|
2018-02-02 01:58:55 +00:00
|
|
|
public long? TotalSpace { get; set; }
|
2013-01-29 01:59:18 +00:00
|
|
|
|
2013-02-18 01:45:14 +00:00
|
|
|
public List<UnmappedFolder> UnmappedFolders { get; set; }
|
2011-03-09 07:40:48 +00:00
|
|
|
}
|
2018-02-02 01:58:55 +00:00
|
|
|
}
|