using System.Collections.Generic; using System.Windows; using DTS.Common.Base; namespace DTS.Common.Interface { public interface IMainViewerViewModel : IBaseViewModel { /// /// Gets the Main View. /// IBaseView View { get; } object ContextMainRegion { get; set; } object ContextNavigationRegion { get; set; } object ContextHorizontalTabRegion { get; set; } object ContextVerticalTabRegion { get; set; } List GetRegions(); } }