mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 15:17:23 +01:00
9 lines
No EOL
365 B
C#
9 lines
No EOL
365 B
C#
namespace MareSynchronos.WebAPI.SignalR;
|
|
|
|
public record JwtIdentifier(string ApiUrl, string CharaHash, string UID, string SecretKeyOrOAuth)
|
|
{
|
|
public override string ToString()
|
|
{
|
|
return "{JwtIdentifier; Url: " + ApiUrl + ", Chara: " + CharaHash + ", UID: " + UID + ", HasSecretKeyOrOAuth: " + !string.IsNullOrEmpty(SecretKeyOrOAuth) + "}";
|
|
}
|
|
} |