using System; using System.Collections.Generic; using System.Windows; using DTS.Common.Base; namespace DTS.Common.Interface { public interface ISystemSettingsViewModel : IBaseViewModel { /// /// Gets the Shell View. /// ISystemSettingsView View { get; } List GetRegions(); Object ContextMenuRegion { get; set; } Object ContextMainRegion { get; set; } Object ContextNavigationRegion { get; set; } } }