10 lines
285 B
C#
10 lines
285 B
C#
#nullable disable
|
|
namespace EllieBot.Modules.Patronage;
|
|
|
|
public readonly struct PatreonCredentials
|
|
{
|
|
public string ClientId { get; init; }
|
|
public string ClientSecret { get; init; }
|
|
public string AccessToken { get; init; }
|
|
public string RefreshToken { get; init; }
|
|
}
|