Create endpoint to upload documents and add ability to attach uploaded documents to records.

This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD
2025-01-08 14:14:23 -07:00
parent 55bf817310
commit 8110ee18f1
5 changed files with 103 additions and 14 deletions

View File

@@ -23,6 +23,7 @@
public string Notes { get; set; }
public List<string> Tags { get; set; } = new List<string>();
public List<ExtraField> ExtraFields { get; set; } = new List<ExtraField>();
public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>();
public bool IncludeInAverage { get { return MilesPerGallon > 0 || (!IsFillToFull && !MissedFuelUp); } }
}
}