9 lines
196 B
C#
9 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!;
|
||
|
}
|