mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01: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
|
||
|
}
|
||
|
}
|