Files
ChronoCCG/Chrono/Cloud/Models/UserDeck.cs
T
2026-07-05 17:14:19 -04:00

13 lines
388 B
C#

namespace Cloud.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;
}