Files
DP44/Common/DTS.CommonCore/.svn/pristine/0a/0a0f1b545c00cddc48886c7e1cbbb44854ca50e7.svn-base

20 lines
585 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using DTS.Common.Base;
using Microsoft.Practices.Prism.Commands;
using System.Collections.ObjectModel;
namespace DTS.Common.Interface
{
public interface IPSDReportResultsViewModel : IBaseViewModel
{
/// <summary>
/// Gets the Results View.
/// </summary>
IBaseView View { get; set; }
IBaseViewModel Parent { get; set; }
DelegateCommand ExportToPDFCommand { get; }
DelegateCommand ExportToCSVCommand { get; }
ObservableCollection<IChannelGRMSSummary> Results { get; set; }
}
}