mirror of
https://github.com/redstrate/Auracite.git
synced 2025-04-24 13:37:45 +00:00
13 lines
206 B
C#
13 lines
206 B
C#
|
using System;
|
||
|
|
||
|
namespace Auracite;
|
||
|
|
||
|
public interface IStep
|
||
|
{
|
||
|
public event CompletedDelegate Completed;
|
||
|
|
||
|
string StepName();
|
||
|
string StepDescription();
|
||
|
|
||
|
delegate void CompletedDelegate();
|
||
|
}
|