Foxchat.NET/Foxchat.Core/Models/Hello.cs
2024-05-14 03:51:31 +02:00

6 lines
250 B
C#

namespace Foxchat.Core.Models;
public record HelloRequest(string Host);
public record HelloResponse(string PublicKey, string Host);
public record NodeInfo(string Software, string PublicKey);
public record NodeSoftware(string Name, string? Version);