From d49b2f1b600bf44ef004dc2995dd8946a7b8a4fa Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 30 Oct 2025 21:52:20 -0400 Subject: [PATCH] InstallShieldExecutable model cleanup --- .../Models/InstallShieldExecutable/FileEntry.cs | 6 +++--- .../Models/InstallShieldExecutable/SFX.cs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/SabreTools.Serialization/Models/InstallShieldExecutable/FileEntry.cs b/SabreTools.Serialization/Models/InstallShieldExecutable/FileEntry.cs index 1d6a5c8f..1e30f4ed 100644 --- a/SabreTools.Serialization/Models/InstallShieldExecutable/FileEntry.cs +++ b/SabreTools.Serialization/Models/InstallShieldExecutable/FileEntry.cs @@ -6,19 +6,19 @@ namespace SabreTools.Data.Models.InstallShieldExecutable /// Name of the file /// /// May only contain ASCII (7-bit) characters - public string? Name { get; set; } + public string Name { get; set; } /// /// Path of the file, seems to usually use \ filepaths /// /// May only contain ASCII (7-bit) characters - public string? Path { get; set; } + public string Path { get; set; } /// /// Version of the file /// /// May only contain ASCII (7-bit) characters - public string? Version { get; set; } + public string Version { get; set; } /// /// Length of the file. Stored in the installshield executable as a string. diff --git a/SabreTools.Serialization/Models/InstallShieldExecutable/SFX.cs b/SabreTools.Serialization/Models/InstallShieldExecutable/SFX.cs index 2a8c6e3f..738ae2a0 100644 --- a/SabreTools.Serialization/Models/InstallShieldExecutable/SFX.cs +++ b/SabreTools.Serialization/Models/InstallShieldExecutable/SFX.cs @@ -37,6 +37,6 @@ namespace SabreTools.Data.Models.InstallShieldExecutable /// /// Set of file entries /// - public FileEntry[]? Entries { get; set; } + public FileEntry[] Entries { get; set; } } }