Added method to upload and delete documents from service records.

This commit is contained in:
ivancheahhh
2024-01-02 15:15:25 -07:00
parent 30df01ba96
commit 3a3f216ddf
12 changed files with 178 additions and 17 deletions

8
Models/UploadedFiles.cs Normal file
View File

@@ -0,0 +1,8 @@
namespace CarCareTracker.Models
{
public class UploadedFiles
{
public string Name { get; set; }
public string Location { get; set; }
}
}