Add base view model.

This commit is contained in:
2020-05-24 04:56:09 +01:00
parent 9faecdb2df
commit 6aa8c57a1a
6 changed files with 12 additions and 9 deletions

View File

@@ -3,9 +3,8 @@ using System.Collections.Generic;
namespace Marechai.ViewModels
{
public class MachineViewModel
public class MachineViewModel : BaseViewModel<int>
{
public int Id { get; set; }
public string Name { get; set; }
public string Model { get; set; }
public string CompanyName { get; set; }