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

This commit is contained in:
2020-05-29 05:02:31 +01:00
parent d0db223521
commit 092121c6c2
12 changed files with 272 additions and 618 deletions

View File

@@ -0,0 +1,12 @@
using Marechai.Database;
namespace Marechai.ViewModels
{
public class StorageByMachineViewModel : BaseViewModel<long>
{
public int MachineId { get; set; }
public StorageType Type { get; set; }
public StorageInterface Interface { get; set; }
public long? Capacity { get; set; }
}
}