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
+9
View File
@@ -0,0 +1,9 @@
namespace API.Models;
public class LoginPayload
{
public bool Success { get; set; }
public string? Token { get; set; }
public string? Username { get; set; }
public string? Message { get; set; }
}
+12
View File
@@ -0,0 +1,12 @@
namespace API.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;
}