mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-02-16 13:55:32 +00:00
InstallShieldExecutable model cleanup
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user