Files
DP44/Common/DTS.Common/.svn/pristine/46/46bb4e721e4206d1d276fecd4a7102d1779ffa96.svn-base

13 lines
251 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using DTS.Common.Base;
namespace DTS.Common.Interface
{
public interface ITestsViewModel : IBaseViewModel
{
/// <summary>
/// Gets the Tests View.
/// </summary>
ITestsView View { get; }
}
}