add tagging functionality to notes, odometer, and tax tabs

This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD
2024-02-02 09:06:11 -07:00
parent 0b1e3f4be8
commit abb44608fe
16 changed files with 95 additions and 12 deletions

View File

@@ -7,6 +7,7 @@
public DateTime Date { get; set; }
public int Mileage { get; set; }
public string Notes { get; set; }
public List<string> Tags { get; set; } = new List<string>();
public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>();
}
}