using System.Collections.Generic;
using System.Windows;
using DTS.Common.Base;
namespace DTS.Common.Interface
{
public interface IViewerShellViewModel : IBaseViewModel
{
///
/// Gets the Shell View.
///
IViewerShellView View { get; }
List GetRegions();
object ContextMainRegion { get; set; }
}
}