Added Async File Upload.

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-01-01 20:40:08 -07:00
parent 3a76cce00b
commit 894d4e3f22
5 changed files with 133 additions and 83 deletions

View File

@@ -1,12 +0,0 @@
namespace CarCareTracker.Models
{
public class VehicleInputModel
{
public int Year { get; set; }
public string Make { get; set; }
public string Model { get; set; }
public string LicensePlate { get; set; }
public IFormFile Image { get; set; }
public List<string> Errors { get; set; }
}
}