using System.Collections.Generic; using Abp.Application.Services.Dto; namespace WeApp.TrainingEval.Dto { public class CampDetailDto : EntityDto { 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 Groups { get; set; } } }