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

This commit is contained in:
2020-05-29 04:41:24 +01:00
parent 9bfd5eb888
commit d0db223521
12 changed files with 319 additions and 648 deletions

View File

@@ -0,0 +1,13 @@
using Marechai.Database;
namespace Marechai.ViewModels
{
public class MemoryByMachineViewModel : BaseViewModel<long>
{
public int MachineId { get; set; }
public MemoryType Type { get; set; }
public MemoryUsage Usage { get; set; }
public long? Size { get; set; }
public double? Speed { get; set; }
}
}