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