using System; 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; public HandshakeResponseMessage() { } } }