Rename model fields to more appropriate names.

This commit is contained in:
2018-08-06 19:54:03 +01:00
parent ab24e794c3
commit 980f25b600
17 changed files with 1988 additions and 243 deletions

View File

@@ -2,11 +2,11 @@
{
public class GpusByMachine
{
public int Gpu { get; set; }
public int Machine { get; set; }
public long Id { get; set; }
public int GpuId { get; set; }
public int MachineId { get; set; }
public long Id { get; set; }
public Gpus GpuNavigation { get; set; }
public Machines MachineNavigation { get; set; }
public Gpus Gpu { get; set; }
public Machines Machine { get; set; }
}
}