18 lines
378 B
C#
18 lines
378 B
C#
using DTS.Common.Base;
|
|
|
|
namespace DTS.Common.Interface
|
|
{
|
|
public interface ITabItemViewModel : IBaseViewModel
|
|
{
|
|
/// <summary>
|
|
/// Gets the Tab Item View.
|
|
/// </summary>
|
|
ITabItemView View { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the Tab View.
|
|
/// </summary>
|
|
ITabViewModel Parent { get; }
|
|
}
|
|
}
|