using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DiscordRPC
{
///
/// Configuration of the current RPC connection
///
public class Configuration
{
///
/// The Discord API endpoint that should be used.
///
[JsonProperty("api_endpoint")]
public string ApiEndpoint { get; set; }
///
/// The CDN endpoint
///
[JsonProperty("cdn_host")]
public string CdnHost { get; set; }
///
/// The type of enviroment the connection on. Usually Production.
///
[JsonProperty("enviroment")]
public string Enviroment { get; set; }
}
}