mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
Allow to add and remove storage from machine details in admin view.
This commit is contained in:
12
Marechai/ViewModels/StorageByMachineViewModel.cs
Normal file
12
Marechai/ViewModels/StorageByMachineViewModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user