Files
LightlessClient/LightlessSync/WebAPI/SignalR/JwtIdentifier.cs
2025-08-22 13:07:48 +09:00

9 lines
364 B
C#

namespace LightlessSync.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) + "}";
}
}