2013-04-22 03:18:08 +00:00
|
|
|
|
using System;
|
2013-05-13 04:24:04 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-04-22 03:18:08 +00:00
|
|
|
|
using NzbDrone.Api.REST;
|
2013-05-13 04:24:04 +00:00
|
|
|
|
using NzbDrone.Core.RootFolders;
|
2013-04-22 03:18:08 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Api.RootFolders
|
|
|
|
|
{
|
|
|
|
|
public class RootFolderResource : RestResource
|
|
|
|
|
{
|
|
|
|
|
public String Path { get; set; }
|
2013-05-02 23:06:08 +00:00
|
|
|
|
public Int64 FreeSpace { get; set; }
|
2013-05-13 04:24:04 +00:00
|
|
|
|
|
|
|
|
|
public List<UnmappedFolder> UnmappedFolders { get; set; }
|
2013-04-22 03:18:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|