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