1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00
Radarr/NzbDrone.Api/RootFolders/RootFolderResource.cs

15 lines
364 B
C#
Raw Normal View History

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