summaryrefslogtreecommitdiff
path: root/Impostor-dev/src/Impostor.Patcher/Impostor.Patcher.Shared/Events/ErrorEventArgs.cs
blob: 7211d5d35b17bc28a832bedfbf1cfe5d3cbf93be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace Impostor.Patcher.Shared.Events
{
    public class ErrorEventArgs : EventArgs
    {
        public ErrorEventArgs(string message)
        {
            Message = message;
        }

        public string Message { get; }
    }
}