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