mirror of https://github.com/Radarr/Radarr
13 lines
267 B
C#
13 lines
267 B
C#
|
using System;
|
|||
|
|
|||
|
namespace NzbDrone.Core.DiskSpace
|
|||
|
{
|
|||
|
public class DiskSpace
|
|||
|
{
|
|||
|
public String Path { get; set; }
|
|||
|
public String Label { get; set; }
|
|||
|
public long FreeSpace { get; set; }
|
|||
|
public long TotalSpace { get; set; }
|
|||
|
}
|
|||
|
}
|