| 12345678910111213141516171819202122 |
- using System.Collections.Generic;
- namespace WeApp.TrainingEval.Dto
- {
- public class RoleGroupDto
- {
- public string GroupNo { get; set; }
- public List<string> RoleGroupNos { get; set; }
- public List<string> SelfRoleNames { get; set; }
- }
- public class GroupRolePlanDto
- {
- public string GroupNo { get; set; }
- public List<RolePlanDto> Plans { get; set; }
- }
- public class RolePlanDto
- {
- public string Name { get; set; }
- public List<string> RoleName { get; set; }
- }
- }
|