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
This commit is contained in:
2026-03-15 23:51:51 -04:00
parent cc921f4b70
commit 9bc41d9a6d
17 changed files with 162 additions and 250 deletions

View File

@@ -0,0 +1,14 @@
using SurrealDb.Net.Models;
namespace RelayCore.Models;
public class AuthAudits : Record
{
public required string UserId { get; set; }
public required int EventType { get; set; }
public bool Success { get; set; }
public required string IpAddress { get; set; }
public required string UserAgent { get; set; }
public required string Details { get; set; }
public required DateTime CreatedAt { get; set; }
}