17 lines
415 B
C#
17 lines
415 B
C#
using System.Collections.Generic;
|
|
using System.Windows;
|
|
using DTS.Common.Base;
|
|
|
|
namespace DTS.Common.Interface
|
|
{
|
|
public interface IViewerShellViewModel : IBaseViewModel
|
|
{
|
|
/// <summary>
|
|
/// Gets the Shell View.
|
|
/// </summary>
|
|
IViewerShellView View { get; }
|
|
List<FrameworkElement> GetRegions();
|
|
object ContextMainRegion { get; set; }
|
|
}
|
|
}
|