CampDetailDto.cs 551 B

123456789101112131415161718
  1. using System.Collections.Generic;
  2. using Abp.Application.Services.Dto;
  3. namespace WeApp.TrainingEval.Dto
  4. {
  5. public class CampDetailDto : EntityDto<string>
  6. {
  7. public string Name { get; set; }
  8. public string PackageNo { get; set; }
  9. public string PackageName { get; set; }
  10. public int CampState { get; set; }
  11. public decimal RoundScore { get; set; }
  12. public string EvalBehaviorTags { get; set; }
  13. public string ScoreRule { get; set; }
  14. public List<GroupDto> Groups { get; set; }
  15. }
  16. }