13 lines
245 B
C#
13 lines
245 B
C#
|
|
using DTS.Common.Base;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Interface
|
|||
|
|
{
|
|||
|
|
public interface ITabViewModel : IBaseViewModel
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Gets the Tab View.
|
|||
|
|
/// </summary>
|
|||
|
|
ITabView View { get; }
|
|||
|
|
}
|
|||
|
|
}
|