foxcord/Foxcord/DiscordClientOptions.cs

11 lines
229 B
C#
Raw Normal View History

2024-07-02 01:14:46 +02:00
namespace Foxcord;
/// <summary>
///
/// </summary>
public class DiscordClientOptions
{
public required string Token { get; init; }
public string? UserAgent { get; init; }
public string? RestBaseUrl { get; init; }
}