namespace SabreTools.Data.Models.WiseInstaller.Actions
{
///
/// Display Message
///
/// This action displays a message dialog box and can optionally branch the script based on
/// the end user response. Without the branching option, this dialog box has an OK button,
/// which continues, and a Cancel button, which halts installation.
///
///
///
public class DisplayMessage : MachineStateData
{
///
/// Flags, unknown mapping
///
///
/// Expected flags:
/// - Message icon(?)
/// - Start If Block (0x01)
/// - No Cancel (unknown)
///
public byte Flags { get; set; }
///
/// Strings, two per language (1 title and 1 message)
///
public string[]? TitleText { get; set; }
}
}