13 lines
251 B
C#
13 lines
251 B
C#
using DTS.Common.Base;
|
|
|
|
namespace DTS.Common.Interface
|
|
{
|
|
public interface ITestsViewModel : IBaseViewModel
|
|
{
|
|
/// <summary>
|
|
/// Gets the Tests View.
|
|
/// </summary>
|
|
ITestsView View { get; }
|
|
}
|
|
}
|