Restructuing

This commit is contained in:
2026-07-05 16:30:58 -04:00
parent 678e20d402
commit 7b0f2ce1a5
767 changed files with 354 additions and 76 deletions
+12
View File
@@ -0,0 +1,12 @@
namespace Cloud.Models;
public class PasskeyCredential
{
public int Id { get; set; }
public required byte[] CredentialId { get; set; }
public required byte[] PublicKey { get; set; }
public long SignCount { get; set; }
public required byte[] UserHandle { get; set; }
public string AaGuid { get; set; } = string.Empty;
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
}
+12
View File
@@ -0,0 +1,12 @@
namespace Cloud.Models;
public class UserDeck
{
public Guid Id { get; set; } = Guid.NewGuid();
public string Name { get; set; } = "";
public List<string> Cards { get; set; } = [];
public List<string> Divers { get; set; } = [];
public string? Notes { get; set; }
public string? Season { get; set; }
public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
}