Files
DiscordChatExporter/DiscordChatExporter.Core.Models/AuthToken.cs
2019-04-10 23:45:21 +03:00

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;
}
}
}