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