Add Reminder function.

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-01-07 11:28:17 -07:00
parent c05b5e4c3d
commit f28af456b3
11 changed files with 57 additions and 13 deletions

View File

@@ -4,7 +4,7 @@
{
public int Id { get; set; }
public int VehicleId { get; set; }
public string Date { get; set; }
public string Date { get; set; } = DateTime.Now.AddDays(1).ToShortDateString();
public int Mileage { get; set; }
public string Description { get; set; }
public string Notes { get; set; }