Files
motovaultpro/Models/Note/Note.cs
Eric Gullickson f7eca4bad5 first commit
2025-07-15 20:34:05 -05:00

15 lines
521 B
C#

namespace MotoVaultPro.Models
{
public class Note
{
public int Id { get; set; }
public int VehicleId { get; set; }
public string Description { get; set; }
public string NoteText { get; set; }
public bool Pinned { get; set; }
public List<string> Tags { get; set; } = new List<string>();
public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>();
public List<ExtraField> ExtraFields { get; set; } = new List<ExtraField>();
}
}