19 lines
511 B
Plaintext
19 lines
511 B
Plaintext
|
|
using DTS.Common.Base;
|
||
|
|
using Microsoft.Practices.Prism.Events;
|
||
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace DTS.Common.Events
|
||
|
|
{
|
||
|
|
public class SaveReportToPDFRequestedEvent : CompositePresentationEvent<SaveReportToPDFRequestedEventArgs> { }
|
||
|
|
|
||
|
|
public class SaveReportToPDFRequestedEventArgs
|
||
|
|
{
|
||
|
|
public string Directory { get; set; }
|
||
|
|
public IBaseViewModel ParentVM { get; set; }
|
||
|
|
}
|
||
|
|
}
|