9 lines
124 B
C#
9 lines
124 B
C#
namespace MxGateway.Worker.Sta;
|
|
|
|
internal interface IStaWorkItem
|
|
{
|
|
void CancelBeforeExecution();
|
|
|
|
void Execute();
|
|
}
|