Foxchat.NET/Foxchat.Core/Models/Hello.cs

7 lines
250 B
C#
Raw Normal View History

2024-05-11 15:26:47 +02:00
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);