Files
DP44/Common/DTS.CommonCore/.svn/pristine/74/74f571f525203b5046493a26c21f6529811f9ac5.svn-base

13 lines
253 B
Plaintext
Raw Normal View History

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