Files
Relay/RelayServer/Models/UserKeys.cs
RuKira 9bc41d9a6d Updated Structure, and fixed paths.
- Project does not work still in this version as communication is still not happening between Client/Server/Core. Fake UI is still somewhat needed to progress
2026-03-15 23:51:51 -04:00

11 lines
302 B
C#

using SurrealDb.Net.Models;
namespace RelayServer.Models;
public class UserKeys : Record
{
public required string UserId { get; set; }
public required string PublicKey { get; set; }
public required DateTime CreatedAt { get; set; }
public required DateTime UpdatedAt { get; set; }
}