Foxchat.NET/Foxchat.Core/Models/Http/Hello.cs
2024-05-21 17:45:35 +02:00

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);
}