11 lines
170 B
C#
11 lines
170 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace TBF.BenchControl
|
|
{
|
|
public interface ISequence
|
|
{
|
|
IList<Event> Execute(Entities.Test test);
|
|
}
|
|
}
|