Files
SabreTools.Serialization/SabreTools.Serialization/Models/InstallShieldExecutable/FileEntry.cs

29 lines
878 B
C#
Raw Normal View History

namespace SabreTools.Data.Models.InstallShieldExecutable
{
2025-10-23 16:05:12 -04:00
public class FileEntry
{
/// <summary>
2025-10-23 16:05:12 -04:00
/// Name of the file
/// </summary>
2025-10-23 16:05:12 -04:00
/// <remarks>May only contain ASCII (7-bit) characters</remarks>
2025-10-30 21:52:20 -04:00
public string Name { get; set; }
/// <summary>
2025-10-23 16:05:12 -04:00
/// Path of the file, seems to usually use \ filepaths
/// </summary>
2025-10-23 16:05:12 -04:00
/// <remarks>May only contain ASCII (7-bit) characters</remarks>
2025-10-30 21:52:20 -04:00
public string Path { get; set; }
/// <summary>
/// Version of the file
/// </summary>
2025-10-23 16:05:12 -04:00
/// <remarks>May only contain ASCII (7-bit) characters</remarks>
2025-10-30 21:52:20 -04:00
public string Version { get; set; }
/// <summary>
/// Length of the file. Stored in the installshield executable as a string.
/// </summary>
public ulong Length { get; set; }
}
2025-10-23 16:05:12 -04:00
}