Files
DP44/Common/DTS.CommonCore/.svn/pristine/b3/b34aff2993feccfbf6d2c69151a684bc438fe131.svn-base

18 lines
378 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
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; }
}
}