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; } } }