mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-29 13:25:13 +02:00
Added Disk space information to system.
(cherry picked from commit 91625019378247b1c6ab85afaee23f2855e3298b)
This commit is contained in:

committed by
Mark McDowall

parent
4510ca8fa1
commit
041e767f3d
15
src/NzbDrone.Api/DiskSpace/DiskSpaceResource.cs
Normal file
15
src/NzbDrone.Api/DiskSpace/DiskSpaceResource.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using NzbDrone.Api.REST;
|
||||
|
||||
namespace NzbDrone.Api.DiskSpace
|
||||
{
|
||||
public class DiskSpaceResource : RestResource
|
||||
{
|
||||
public string DriveLetter { get; set; }
|
||||
public string FreeSpace { get; set; }
|
||||
public string TotalSpace { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user