12 lines
269 B
Plaintext
12 lines
269 B
Plaintext
|
|
using Prism.Events;
|
||
|
|
// ReSharper disable CheckNamespace
|
||
|
|
|
||
|
|
namespace DTS.Common.Events
|
||
|
|
{
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// A request was made to save the current chart to PDF.
|
||
|
|
/// </summary>
|
||
|
|
public class SaveToPDFRequestedEvent : PubSubEvent<string> { }
|
||
|
|
}
|