RoleGroupDto.cs 548 B

12345678910111213141516171819202122
  1. using System.Collections.Generic;
  2. namespace WeApp.TrainingEval.Dto
  3. {
  4. public class RoleGroupDto
  5. {
  6. public string GroupNo { get; set; }
  7. public List<string> RoleGroupNos { get; set; }
  8. public List<string> SelfRoleNames { get; set; }
  9. }
  10. public class GroupRolePlanDto
  11. {
  12. public string GroupNo { get; set; }
  13. public List<RolePlanDto> Plans { get; set; }
  14. }
  15. public class RolePlanDto
  16. {
  17. public string Name { get; set; }
  18. public List<string> RoleName { get; set; }
  19. }
  20. }