9 lines
273 B
C#
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;
|
|
} |