mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-11 04:37:03 -06:00
10 lines
197 B
C#
10 lines
197 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class Note
|
|
{
|
|
public int Id { get; set; }
|
|
public int VehicleId { get; set; }
|
|
public string NoteText { get; set; }
|
|
}
|
|
}
|