CampRoleGroupDto.cs 326 B

123456789101112
  1. using System.Collections.Generic;
  2. using WeApp.BasicInfo.TrainingRoleGroup.Dto;
  3. namespace WeApp.TrainingCamp.Dto
  4. {
  5. public class CampRoleGroupDto
  6. {
  7. public List<TrainingRoleGroupDto> AllGroups { get; set; }
  8. public List<string> GroupNos { get; set; }
  9. public string CampNo { get; set; }
  10. }
  11. }