mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
12 lines
286 B
C#
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; }
|
|
}
|
|
}
|