reorganized folders.

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-02-21 20:54:14 -07:00
parent 410f45c6c2
commit 0d8822c496
8 changed files with 63 additions and 0 deletions

13
Models/Note/Note.cs Normal file
View File

@@ -0,0 +1,13 @@
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; }
public List<string> Tags { get; set; } = new List<string>();
public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>();
}
}