Some orgnization, and cleanup to come.
This commit is contained in:
12
RelayServer/Models/Crypto/ServerEncryptionKeys.cs
Normal file
12
RelayServer/Models/Crypto/ServerEncryptionKeys.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using SurrealDb.Net.Models;
|
||||
|
||||
namespace RelayServer.Models;
|
||||
|
||||
public class ServerEncryptionKeys : Record
|
||||
{
|
||||
public required string KeyBase64 { get; set; }
|
||||
public required string PublicKey { get; set; }
|
||||
public required string PrivateKey { get; set; }
|
||||
public required DateTime CreatedAt { get; set; }
|
||||
public required DateTime UpdatedAt { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user