using System; namespace Nibriboard.Client.Messages { public class LineStartMessage : Message { /// /// The id of the line to complete /// public string LineId; /// /// The colour of the line. May be any valid colour accepted by the HTML5 Canvas API. /// public string LineColour; /// /// The width of the line, in pixels. /// public int LineWidth; public LineStartMessage() { } } }