Files
DP44/Common/DTS.CommonCore/.svn/pristine/3b/3b095f368bd0170c6c58316c866f993fc0f2dbac.svn-base

17 lines
402 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
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();
}
}