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

This commit is contained in:
2020-05-29 02:13:46 +01:00
parent c922cbcdd1
commit 7cf5058f9b
12 changed files with 262 additions and 339 deletions

View File

@@ -0,0 +1,10 @@
namespace Marechai.ViewModels
{
public class GpuByMachineViewModel : BaseViewModel<long>
{
public int GpuId { get; set; }
public int MachineId { get; set; }
public string CompanyName { get; set; }
public string Name { get; set; }
}
}