lubelog/Models/Note.cs
2024-02-02 09:06:11 -07:00

13 lines
355 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>();
}
}