Files
DP44/Common/DTS.CommonCore/.svn/pristine/84/848541dff2b50c9c8a1f33897119c8efc79c55df.svn-base

13 lines
277 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 IDockPanelHorizontalViewModel : IBaseViewModel
{
/// <summary>
/// Gets the Tab View.
/// </summary>
IDockPanelHorizontalView View { get; }
}
}