Files
ChronoCCG/Chrono/API/Models/UserDeck.cs
T
6d486f49 1d6207fbfe API Test
2026-08-17 00:45:08 -04:00

12 lines
385 B
C#

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;
}