aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/DisplayEventArgs.cs
blob: baa9b0e2885ad61325acef98106c3df8d42241db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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.

namespace WixToolset.Data
{
    using System;

    public delegate void DisplayEventHandler(object sender, DisplayEventArgs e);

    public class DisplayEventArgs : EventArgs
    {
        public MessageLevel Level { get; set; }

        public string Message { get; set; }
    }
}