0
mirror of https://github.com/gusmanb/logicanalyzer.git synced 2025-02-05 10:08:06 +00:00
gusmanb-logicanalyzer/Software/LogicAnalyzer/TerminalCapture/IStepValidate.cs
2025-01-26 11:58:42 +01:00

22 lines
481 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Terminal.Gui;
namespace TerminalCapture
{
public interface IStepValidate
{
public void OnValidate(StepValidateArgs Arguments);
}
public class StepValidateArgs
{
public bool IsValid { get; set; }
public WizardStep[]? Sequence { get; set; }
public object? Args { get; set; }
}
}