Files
SabreTools.Serialization/SabreTools.Data.Models/WiseInstaller/Actions/CustomDialogSet.cs

39 lines
1.1 KiB
C#
Raw Normal View History

2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.WiseInstaller.Actions
2025-09-26 12:09:34 -04:00
{
/// <summary>
/// Custom Dialog
2025-10-30 23:54:22 -04:00
///
2025-09-26 12:09:34 -04:00
/// Use this action to create your own dialog box or dialog box set.
/// </summary>
2025-10-30 23:54:22 -04:00
/// <see href="https://codeberg.org/CYBERDEV/REWise/src/branch/master/src/wisescript.h"/>
/// <see href="https://www.manualslib.com/manual/404969/Symantec-Wisescript-Editor-8-0-Reference-For-Wise-Package-Studio-V1-0.html"/>
2025-09-26 12:09:34 -04:00
/// TODO: Document the decompressed file format
public class CustomDialogSet : MachineStateData
{
/// <summary>
/// Start of the deflated data
/// </summary>
public uint DeflateStart { get; set; }
/// <summary>
/// End of the deflated data
/// </summary>
public uint DeflateEnd { get; set; }
/// <summary>
/// Inflated data size
/// </summary>
public uint InflatedSize { get; set; }
/// <summary>
/// Display variable name
/// </summary>
public string? DisplayVariable { get; set; }
/// <summary>
/// Name
/// </summary>
public string? Name { get; set; }
}
}