11 lines
247 B
Plaintext
11 lines
247 B
Plaintext
|
|
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; }
|
||
|
|
}
|
||
|
|
}
|