using Newtonsoft.Json; namespace DiscordRPC.Message { /// /// Called when the ipc is ready to send arguments. /// public class ReadyMessage : IMessage { /// /// The type of message received from discord /// public override MessageType Type { get { return MessageType.Ready; } } /// /// The configuration of the connection /// [JsonProperty("config")] public Configuration Configuration { get; set; } /// /// User the connection belongs too /// [JsonProperty("user")] public User User { get; set; } /// /// The version of the RPC /// [JsonProperty("v")] public int Version { get; set; } } }