1
0
Fork 0
mirror of https://github.com/sbrl/Nibriboard.git synced 2018-01-10 21:33:49 +00:00
Nibriboard/Nibriboard/Client/Messages/ErrorMessage.cs

20 lines
419 B
C#
Raw Normal View History

2017-04-23 16:11:46 +00:00
using System;
namespace Nibriboard.Client.Messages
{
/// <summary>
/// Represents a complaint (usually by the server) about something that the other party
2017-07-29 19:41:41 +00:00
/// has done that they probably shouldn't have.
2017-04-23 16:11:46 +00:00
/// </summary>
public class ErrorMessage : Message
2017-04-23 16:11:46 +00:00
{
/// <summary>
/// The message describing the error that has occurred.
/// </summary>
public string Message;
2017-04-23 16:11:46 +00:00
public ErrorMessage()
{
}
}
}