13 lines
247 B
Plaintext
13 lines
247 B
Plaintext
|
|
using DTS.Common.Base;
|
||
|
|
|
||
|
|
namespace DTS.Common.Interface
|
||
|
|
{
|
||
|
|
public interface IDiagViewModel : IBaseViewModel
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Gets the Tab View.
|
||
|
|
/// </summary>
|
||
|
|
IDiagView View { get; }
|
||
|
|
}
|
||
|
|
}
|