using System; using System.Collections.Generic; using SBRL.Utilities; namespace Nibriboard.Client.Messages { /// /// Sent by a client who's in the middle of drawing a line. /// Contains a collection of points that should be added to the line they're drawing. /// public class LinePartMessage : Message { /// /// The id of the line to add the points to. /// public string LineId; /// /// The points to add to the line /// public List Points; public LinePartMessage() { } } }