ReportSceneDto.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using WeEngine.ModelInfo;
  4. namespace WeEngine.CommonDto.ReportDto
  5. {
  6. public class ReportSceneDto
  7. {
  8. public ReportSceneDto(SceneModel scene)
  9. {
  10. Description = scene.Description;
  11. Id = scene.Id;
  12. No = scene.No;
  13. Name = scene.Name;
  14. Path = scene.Path;
  15. ParentPath = scene.ParentPath;
  16. Variables = scene.Variables;
  17. SceneType = scene.SceneType;
  18. BehaviorNos = scene.BehaviorNos;
  19. }
  20. public string Id { get; set; }
  21. public string No { get; set; }
  22. public string Name { get; set; }
  23. public string Path { get; set; }
  24. public string ParentPath { get; set; }
  25. public Hashtable Variables { get; set; }
  26. public int SceneType { get; set; }
  27. public string Description { get; set; }
  28. public string BehaviorNos { get; set; }
  29. public decimal Score { get; set; }
  30. public decimal FullScore { get; set; }
  31. public List<ReportBehaviorTagDto> BehaviorTags { get; set; }
  32. public List<BehaviorDto> Behaviors { get; set; }
  33. }
  34. }