Vibe deck builder WIP

This commit is contained in:
6d486f49
2026-07-02 22:56:33 -04:00
parent 2435472805
commit 8e4298404d
389 changed files with 3341 additions and 68066 deletions
+12
View File
@@ -0,0 +1,12 @@
namespace Server.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;
}