mirror of
https://github.com/gusmanb/logicanalyzer.git
synced 2025-02-05 10:08:06 +00:00
22 lines
481 B
C#
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; }
|
|
}
|
|
}
|