sledgemapper/Sledgemapper/Messages/ErrorMessage.cs
Michele Scandura 79edfcc4d3
All checks were successful
continuous-integration/drone/push Build is passing
error message, broken build
2021-09-21 16:53:04 +01:00

12 lines
No EOL
274 B
C#

namespace Sledgemapper.Messages
{
public class ErrorMessage : TinyMessenger.TinyMessageBase
{
public string Message { get; }
public ErrorMessage(object sender, string message) : base(sender)
{
Message = message;
}
}
}