Move companies index to Blazor.

This commit is contained in:
2020-05-21 20:25:47 +01:00
parent 0ff6b0b5c3
commit 307bb245ac
14 changed files with 252 additions and 72 deletions

View File

@@ -0,0 +1,11 @@
using System;
namespace Marechai.ViewModels
{
public class CompanyViewModel
{
public int Id { get; set; }
public Guid? LastLogo { get; set; }
public string Name { get; set; }
}
}