You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
437 B

using Discord.Net.Rest;
namespace Discord.Rest
{
/// <summary>
/// Represents a configuration class for <see cref="DiscordRestClient"/>.
/// </summary>
public class DiscordRestConfig : DiscordConfig
{
/// <summary> Gets or sets the provider used to generate new REST connections. </summary>
public RestClientProvider RestClientProvider { get; set; } = DefaultRestClientProvider.Instance;
}
}