mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-01 07:39:12 +00:00
15 lines
300 B
C#
15 lines
300 B
C#
namespace DiscordChatExporter.Core.Models
|
|
{
|
|
public class AuthToken
|
|
{
|
|
public AuthTokenType Type { get; }
|
|
|
|
public string Value { get; }
|
|
|
|
public AuthToken(AuthTokenType type, string value)
|
|
{
|
|
Type = type;
|
|
Value = value;
|
|
}
|
|
}
|
|
} |