mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-14 05:26:46 -06:00
15 lines
523 B
C#
15 lines
523 B
C#
namespace CarCareTracker.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>();
|
|
}
|
|
}
|