mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-19 21:46:43 -04:00
1b32411219
Closes #1867
21 lines
524 B
C#
21 lines
524 B
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
|
|
namespace NzbDrone.Common.Disk
|
|
{
|
|
public interface IMount
|
|
{
|
|
long AvailableFreeSpace { get; }
|
|
string DriveFormat { get; }
|
|
DriveType DriveType { get; }
|
|
bool IsReady { get; }
|
|
MountOptions MountOptions { get; }
|
|
string Name { get; }
|
|
string RootDirectory { get; }
|
|
long TotalFreeSpace { get; }
|
|
long TotalSize { get; }
|
|
string VolumeLabel { get; }
|
|
string VolumeName { get; }
|
|
}
|
|
}
|