mirror of
https://github.com/MobileTooling/Ffu2Vhdx.git
synced 2026-07-27 12:48:20 -07:00
23 lines
569 B
C#
23 lines
569 B
C#
namespace DiscUtils
|
|||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Enumeration of the health status of a logical volume.
|
||
|
|
/// </summary>
|
||
|
|
public enum LogicalVolumeStatus
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// The volume is healthy and fully functional.
|
||
|
|
/// </summary>
|
||
|
|
Healthy = 0,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// The volume is completely accessible, but at degraded redundancy.
|
||
|
|
/// </summary>
|
||
|
|
FailedRedundancy = 1,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// The volume is wholey, or partly, inaccessible.
|
||
|
|
/// </summary>
|
||
|
|
Failed = 2
|
||
|
|
}
|
||
|
|
}
|