using System;
namespace Nibriboard.Client.Messages
{
///
/// Represents a complaint (usually by the server) about something that the other party
/// has done that probably shouldn't have.
///
public class ErrorMessage : Message
{
///
/// The message describing the error that has occurred.
///
public string Message;
public ErrorMessage()
{
}
}
}