Allow to add and remove processors from machine details in admin view.

This commit is contained in:
2020-05-29 03:56:48 +01:00
parent e77bcc3aa4
commit 9bfd5eb888
13 changed files with 269 additions and 584 deletions

View File

@@ -0,0 +1,11 @@
namespace Marechai.ViewModels
{
public class ProcessorByMachineViewModel : BaseViewModel<long>
{
public int ProcessorId { get; set; }
public int MachineId { get; set; }
public string CompanyName { get; set; }
public string Name { get; set; }
public float? Speed { get; set; }
}
}