This commit is contained in:
6d486f49
2026-08-17 00:45:08 -04:00
parent 3a2f112a73
commit 1d6207fbfe
154 changed files with 126007 additions and 47385 deletions
+4 -2
View File
@@ -2,6 +2,8 @@ namespace Model;
public class CardNote
{
public string CardName { get; set; } = "";
public string Note { get; set; } = "";
public string Username { get; set; } = string.Empty;
public string CardName { get; set; } = string.Empty;
public string Note { get; set; } = string.Empty;
public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
}
+8
View File
@@ -0,0 +1,8 @@
namespace Model;
public class User
{
public string Username { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
}