Add comments around default options object

This commit is contained in:
Matt Nadareski
2024-08-06 14:18:08 -04:00
parent 1ff0340cae
commit d45345d338
2 changed files with 5 additions and 0 deletions

View File

@@ -20,8 +20,10 @@ namespace MPF.Check
// Create a default options object
var options = new Frontend.Options()
{
// Internal Program
InternalProgram = InternalProgram.NONE,
// Extra Dumping Options
ScanForProtection = false,
AddPlaceholders = true,
PullAllInformation = false,
@@ -32,11 +34,13 @@ namespace MPF.Check
DeleteUnnecessaryFiles = false,
CreateIRDAfterDumping = false,
// Protection Scanning Options
ScanArchivesForProtection = true,
ScanPackersForProtection = false,
IncludeDebugProtectionInformation = false,
HideDriveLetters = false,
// Redump Login Information
RedumpUsername = null,
RedumpPassword = null,
};