Foxchat.NET/Foxchat.Core/Database/Instance.cs

9 lines
196 B
C#
Raw Normal View History

2024-05-11 15:26:47 +02:00
namespace Foxchat.Core.Database;
public class Instance
{
public int Id { get; init; }
public string PublicKey { get; set; } = null!;
public string PrivateKey { get; set; } = null!;
}