You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/NzbDrone.Common.Test/DiskTests/MockMount.cs

31 lines
705 B

using System.IO;
using NzbDrone.Common.Disk;
namespace NzbDrone.Common.Test.DiskTests
{
public class MockMount : IMount
{
public long AvailableFreeSpace { get; set; }
public string DriveFormat { get; set; }
public DriveType DriveType { get; set; } = DriveType.Fixed;
public bool IsReady { get; set; } = true;
public MountOptions MountOptions { get; set; }
public string Name { get; set; }
public string RootDirectory { get; set; }
public long TotalFreeSpace { get; set; }
public long TotalSize { get; set; }
public string VolumeLabel { get; set; }
public string VolumeName { get; set; }
}
}