9 lines
		
	
	
	
		
			307 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			307 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Foxchat.Core.Models.Http;
 | |
| 
 | |
| public static class Hello
 | |
| {
 | |
|     public record HelloRequest(string Host);
 | |
|     public record HelloResponse(string PublicKey, string Host);
 | |
|     public record NodeInfo(NodeSoftware Software, string PublicKey);
 | |
|     public record NodeSoftware(string Name, string? Version);
 | |
| }
 |