Add code to upload machine photos as well as edit or view details about them.

This commit is contained in:
2020-05-31 03:43:56 +01:00
parent 556c5b2062
commit 0310fe1b31
32 changed files with 4388 additions and 1567 deletions

View File

@@ -0,0 +1,10 @@
namespace Marechai.ViewModels
{
public class MachinePhotoViewModel : BasePhotoViewModel
{
public string Source { get; set; }
public string MachineName { get; set; }
public string MachineCompanyName { get; set; }
public int MachineId { get; set; }
}
}