using DTS.Common.Base; namespace DTS.Common.Interface { public interface IPSDReportSettingsViewModel : IBaseViewModel { /// /// Gets the Settings View. /// IBaseView View { get; set; } IBaseViewModel Parent { get; set; } IPSDReportSettingsModel Model { get; set; } void PublishChanges(); } }