InstallShieldExecutable model cleanup

This commit is contained in:
Matt Nadareski
2025-10-30 21:52:20 -04:00
parent ec7172466b
commit d49b2f1b60
2 changed files with 4 additions and 4 deletions

View File

@@ -6,19 +6,19 @@ namespace SabreTools.Data.Models.InstallShieldExecutable
/// Name of the file
/// </summary>
/// <remarks>May only contain ASCII (7-bit) characters</remarks>
public string? Name { get; set; }
public string Name { get; set; }
/// <summary>
/// Path of the file, seems to usually use \ filepaths
/// </summary>
/// <remarks>May only contain ASCII (7-bit) characters</remarks>
public string? Path { get; set; }
public string Path { get; set; }
/// <summary>
/// Version of the file
/// </summary>
/// <remarks>May only contain ASCII (7-bit) characters</remarks>
public string? Version { get; set; }
public string Version { get; set; }
/// <summary>
/// Length of the file. Stored in the installshield executable as a string.

View File

@@ -37,6 +37,6 @@ namespace SabreTools.Data.Models.InstallShieldExecutable
/// <summary>
/// Set of file entries
/// </summary>
public FileEntry[]? Entries { get; set; }
public FileEntry[] Entries { get; set; }
}
}