using System;
namespace DiscUtils
{
///
/// Flags for the amount of detail to include in a report.
///
[Flags]
public enum ReportLevels
{
///
/// Report no information.
///
None = 0x00,
///
/// Report informational level items.
///
Information = 0x01,
///
/// Report warning level items.
///
Warnings = 0x02,
///
/// Report error level items.
///
Errors = 0x04,
///
/// Report all items.
///
All = 0x07
}
}