11 lines
247 B
C#
11 lines
247 B
C#
|
|
namespace DTS.Common.Interface.TestSetups
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// This interface allows DAS to be ordered within a test setup.
|
|||
|
|
/// </summary>
|
|||
|
|
public interface ITestDASOrder
|
|||
|
|
{
|
|||
|
|
int DASIndex { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|