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

8 lines
196 B
C#

namespace Foxchat.Core.Database;
public class Instance
{
public int Id { get; init; }
public string PublicKey { get; set; } = null!;
public string PrivateKey { get; set; } = null!;
}