using System; namespace Nibriboard.Client.Messages { public class LineCompleteReflectionMessage : Message { /// /// The id of the client that has completed drawing a line. /// public int OtherClientId; /// /// The id of the line to complete /// public string LineId; public LineCompleteReflectionMessage() { } } }