enrolment

This commit is contained in:
2019-06-22 22:39:11 +01:00
parent a2f5886526
commit a6fcf3d3d7
17 changed files with 174 additions and 64 deletions

View File

@ -0,0 +1,18 @@
using System.ComponentModel.DataAnnotations;
namespace Yavsc.ViewModels
{
public partial class FireViewModel {
[Display(Name="EnroledLabel", ResourceType=typeof(EnrolerViewModel))]
public string EnroledUserName { get; set; }
[Required]
public string EnroledUserId { get; set; }
[Display(Name="RoleNameLabel", ResourceType=typeof(EnrolerViewModel))]
[Required]
public string RoleName { get; set; }
}
}