Files

22 lines
540 B
C#
Raw Permalink Normal View History

2025-09-26 13:06:18 -04:00
using SabreTools.Data.Models.WiseInstaller.Actions;
2025-09-26 12:09:34 -04:00
2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.WiseInstaller
2025-09-26 12:09:34 -04:00
{
/// <summary>
/// Represents a single step in the state machine defined
/// in a Wise script file.
/// </summary>
public class MachineState
{
/// <summary>
/// Opcode
/// </summary>
public OperationCode Op { get; set; }
/// <summary>
/// Data specific to the operation, may be null
/// </summary>
public MachineStateData? Data { get; set; }
}
2025-10-30 23:54:22 -04:00
}