Add machine family editing in admin view.

This commit is contained in:
2020-05-27 14:36:49 +01:00
parent bae525e37e
commit 86cfb40ed8
7 changed files with 99 additions and 86 deletions

View File

@@ -2,7 +2,8 @@
{
public class MachineFamilyViewModel : BaseViewModel<int>
{
public string Company;
public string Name;
public string Company { get; set; }
public string Name { get; set; }
public int CompanyId { get; set; }
}
}