mirror of
https://gitlab.com/cleanflash/installer.git
synced 2026-08-13 02:41:38 +08:00
18 lines
759 B
C#
18 lines
759 B
C#
namespace CleanFlashInstaller {
|
|
public class InstallEntry {
|
|
public string InstallText { get; }
|
|
public InstallFlags RequiredFlags { get; }
|
|
public string TargetDirectory { get; }
|
|
public string RegistryInstructions { get; }
|
|
|
|
public InstallEntry(string installText, int requiredFlags, string targetDirectory, string registryInstructions) {
|
|
InstallText = installText;
|
|
RequiredFlags = new InstallFlags(requiredFlags);
|
|
TargetDirectory = targetDirectory;
|
|
RegistryInstructions = registryInstructions;
|
|
}
|
|
|
|
public InstallEntry(string installText, int requiredFlags, string targetDirectory) : this(installText, requiredFlags, targetDirectory, null) { }
|
|
}
|
|
}
|