using System; using System.Collections.Generic; using Newtonsoft.Json; using SBRL.Utilities; using SBRL.Utilities.Solutions; namespace Nibriboard.Client.Messages { /// /// Holds the server's response to a HandshakeRequest. /// public class HandshakeResponseMessage : Message { /// /// The id that the server is assigning to the nibri client. /// public int Id; /// /// The colour that the server is assigning to the nibri client. /// [JsonConverter(typeof(ToStringJsonConverter))] public ColourHSL Colour; /// /// A list of planes that this nibriboard server currently has. /// public List Planes = new List(); public HandshakeResponseMessage() { } } }