RoleGroupDto.cs 808 B

1234567891011121314151617181920212223242526272829303132333435
  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. public class StepDto
  21. {
  22. public string CampNo { get; set; }
  23. public string StepId { get; set; }
  24. }
  25. public class OpPhoneQuestionDto
  26. {
  27. public int Id { get; set; }
  28. public string HandleContent { get; set; }
  29. }
  30. }