namespace Cloud.Models; public class UserDeck { public Guid Id { get; set; } = Guid.NewGuid(); public string Name { get; set; } = ""; public List Cards { get; set; } = []; public List Divers { get; set; } = []; public string? Notes { get; set; } public string? Season { get; set; } public DateTime UpdatedAt { get; set; } = DateTime.UtcNow; }