namespace DiscUtils
{
///
/// Enumeration of the health status of a logical volume.
///
public enum LogicalVolumeStatus
{
///
/// The volume is healthy and fully functional.
///
Healthy = 0,
///
/// The volume is completely accessible, but at degraded redundancy.
///
FailedRedundancy = 1,
///
/// The volume is wholey, or partly, inaccessible.
///
Failed = 2
}
}