aboutsummaryrefslogtreecommitdiff
path: root/src/api/wix/WixToolset.Data/DisplayEventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/wix/WixToolset.Data/DisplayEventArgs.cs')
-rw-r--r--src/api/wix/WixToolset.Data/DisplayEventArgs.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/api/wix/WixToolset.Data/DisplayEventArgs.cs b/src/api/wix/WixToolset.Data/DisplayEventArgs.cs
new file mode 100644
index 00000000..baa9b0e2
--- /dev/null
+++ b/src/api/wix/WixToolset.Data/DisplayEventArgs.cs
@@ -0,0 +1,15 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3namespace WixToolset.Data
4{
5 using System;
6
7 public delegate void DisplayEventHandler(object sender, DisplayEventArgs e);
8
9 public class DisplayEventArgs : EventArgs
10 {
11 public MessageLevel Level { get; set; }
12
13 public string Message { get; set; }
14 }
15}