1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-19 05:10:02 +00:00
Lidarr/NzbDrone.Api/RootFolders/RootFolderResource.cs

11 lines
231 B
C#
Raw Normal View History

using System;
using NzbDrone.Api.REST;
namespace NzbDrone.Api.RootFolders
{
public class RootFolderResource : RestResource
{
public String Path { get; set; }
public UInt64 FreeSpace { get; set; }
}
}