Files
SabreTools.Serialization/SabreTools.Data.Models/WiseInstaller/Actions/ElseIfStatement.cs
Matt Nadareski 7689c6dd07 Libraries
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.Serialization` still builds the normal Nuget package that is used by all other projects and includes all namespaces.
2026-03-21 16:26:56 -04:00

31 lines
1.1 KiB
C#

namespace SabreTools.Data.Models.WiseInstaller.Actions
{
/// <summary>
/// ElseIf Statement
///
/// This action is put inside an If block to check for another condition. It marks the
/// beginning of a block of code that is executed only if the condition checked by the If
/// Statement is false, all previous ElseIfs are false, and this ElseIf is true. You can use one
/// If Statement with multiple ElseIf Statements to check for multiple conditions.
/// </summary>
/// <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"/>
public class ElseIfStatement : MachineStateData
{
/// <summary>
/// Operator, values need to be mapped
/// </summary>
public byte Operator { get; set; }
/// <summary>
/// Variable name
/// </summary>
public string? Variable { get; set; }
/// <summary>
/// Value
/// </summary>
public string? Value { get; set; }
}
}