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,13 +2,13 @@
{
public class MemoryByMachine
{
public int Machine { get; set; }
public int Type { get; set; }
public int Usage { get; set; }
public long? Size { get; set; }
public double? Speed { get; set; }
public long Id { get; set; }
public int MachineId { get; set; }
public int Type { get; set; }
public int Usage { get; set; }
public long? Size { get; set; }
public double? Speed { get; set; }
public long Id { get; set; }
public Machines MachineNavigation { get; set; }
public Machines Machine { get; set; }
}
}