Files
SnowcloakClient/MareSynchronos/WebAPI/SignalR/JwtIdentifier.cs
2025-08-22 02:19:48 +01:00

9 lines
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) + "}";
}
}