lubelog/Models/Note.cs
2024-01-23 17:46:54 -07:00

12 lines
286 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; }
}
}