using WeEngine.Packages; namespace WeEngine.CommonDto.ReportDto { public class BehaviorDto { public BehaviorDto(BehaviorDataNode running) { Id = running.Id; No = running.No; Name = running.Name; Score = running.SystemScore; FullScore = running.FullScore; } public string Id { get; set; } public string No { get; set; } public string Name { get; set; } public decimal Score { get; set; } public decimal FullScore { get; set; } public string Description { get; set; } } }