using System;
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; }
}
}