9 lines
365 B
C#
9 lines
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) + "}";
|
|
}
|
|
} |