Move document companies admin index to Blazor.

This commit is contained in:
2020-05-24 05:10:00 +01:00
parent 6aa8c57a1a
commit 4a94fe37cc
12 changed files with 291 additions and 53 deletions

View File

@@ -0,0 +1,12 @@
using System.ComponentModel;
namespace Marechai.ViewModels
{
public class DocumentCompanyViewModel : BaseViewModel<int>
{
public string Name { get; set; }
[DisplayName("Linked company")]
public string Company { get; set; }
public int? CompanyId { get; set; }
}
}