| 1234567891011121314151617181920212223242526272829303132333435 |
- 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; }
- }
- public class StepDto
- {
- public string CampNo { get; set; }
- public string StepId { get; set; }
- }
- public class OpPhoneQuestionDto
- {
- public int Id { get; set; }
- public string HandleContent { get; set; }
- }
- }
|