Move document people admin index to Blazor.

This commit is contained in:
2020-05-24 05:24:18 +01:00
parent 4a94fe37cc
commit f62c993af7
11 changed files with 292 additions and 53 deletions

View File

@@ -0,0 +1,11 @@
using System.ComponentModel;
namespace Marechai.ViewModels
{
public class DocumentPersonViewModel : BaseViewModel<int>
{
public string Name { get; set; }
public string Person { get; set; }
public int? PersonId { get; set; }
}
}