17 lines
402 B
Plaintext
17 lines
402 B
Plaintext
|
|
using DTS.Common.Base;
|
||
|
|
|
||
|
|
namespace DTS.Common.Interface
|
||
|
|
{
|
||
|
|
public interface IPSDReportSettingsViewModel : IBaseViewModel
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Gets the Settings View.
|
||
|
|
/// </summary>
|
||
|
|
IBaseView View { get; set; }
|
||
|
|
IBaseViewModel Parent { get; set; }
|
||
|
|
IPSDReportSettingsModel Model { get; set; }
|
||
|
|
|
||
|
|
void PublishChanges();
|
||
|
|
}
|
||
|
|
}
|