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