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 SoundByMachine
{
public int SoundSynth { get; set; }
public int Machine { get; set; }
public long Id { get; set; }
public int SoundSynthId { get; set; }
public int MachineId { get; set; }
public long Id { get; set; }
public Machines MachineNavigation { get; set; }
public SoundSynths SoundSynthNavigation { get; set; }
public Machines Machine { get; set; }
public SoundSynths SoundSynth { get; set; }
}
}