mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-25 22:36:59 -04:00
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; }
|
|
}
|
|
}
|