You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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) { }
|
|
}
|
|
}
|