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

9 lines
273 B
C#

namespace Model;
public class CardNote
{
public string Username { get; set; } = string.Empty;
public string CardName { get; set; } = string.Empty;
public string Note { get; set; } = string.Empty;
public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
}