Implement details page for document companies.

This commit is contained in:
2019-06-30 11:49:19 +01:00
parent 27f6c1e069
commit 88a2d670e5
5 changed files with 57 additions and 14 deletions

View File

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