| 123456789101112131415161718 |
- using System.Collections.Generic;
- using Abp.Application.Services.Dto;
- namespace WeApp.TrainingEval.Dto
- {
- public class CampDetailDto : EntityDto<string>
- {
- public string Name { get; set; }
- public string PackageNo { get; set; }
- public string PackageName { get; set; }
- public int CampState { get; set; }
- public decimal RoundScore { get; set; }
- public string EvalBehaviorTags { get; set; }
- public string ScoreRule { get; set; }
- public List<GroupDto> Groups { get; set; }
- }
- }
|