Files
MPF/MPF.Frontend/Enumerations.cs

43 lines
735 B
C#
Raw Permalink Normal View History

2024-05-27 23:52:55 -04:00
namespace MPF.Frontend
{
2024-05-28 13:15:31 -04:00
/// <summary>
/// Drive type for dumping
/// </summary>
public enum InternalDriveType
{
Optical,
Floppy,
HardDisk,
Removable,
}
2024-05-28 14:12:36 -04:00
/// <summary>
/// Program that is being used to dump media
/// </summary>
public enum InternalProgram
{
NONE = 0,
// Dumping support
Aaru,
DiscImageCreator,
Redumper,
// Verification support only
CleanRip,
PS3CFW,
UmdImageCreator,
XboxBackupCreator,
}
2024-05-27 23:52:55 -04:00
/// <summary>
/// Log level for output
/// </summary>
public enum LogLevel
{
USER,
VERBOSE,
ERROR,
SECRET,
}
}