Move computers search to Blazor.

This commit is contained in:
2020-05-22 02:44:24 +01:00
parent 2e9fe91777
commit ef99e0c8e9
9 changed files with 185 additions and 203 deletions

View File

@@ -0,0 +1,9 @@
namespace Marechai.ViewModels
{
public class MachineViewModel
{
public int Id { get; set; }
public string Name { get; set; }
public string CompanyName { get; set; }
}
}