ReportRoundSceneDto.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. //using System.Collections;
  2. //using System.Collections.Generic;
  3. //using WeEngine.Packages;
  4. //using WeOnlineApp.Configuration.Cache;
  5. //namespace WeOnlineApp.TrainingCampPlay.Dto
  6. //{
  7. // public class ReportRoundSceneDto
  8. // {
  9. // public int RoundIndex { get; set; }
  10. // public List<ReportSceneDto> SceneInfos { get; set; }
  11. // }
  12. // public class ReportSceneDto
  13. // {
  14. // public ReportSceneDto(SceneDto scene)
  15. // {
  16. // Description = scene.Description;
  17. // Id = scene.Id;
  18. // No = scene.No;
  19. // Name = scene.Name;
  20. // Path = scene.Path;
  21. // ParentPath = scene.ParentPath;
  22. // Variables = scene.Variables;
  23. // SceneType = scene.SceneType;
  24. // BehaviorNos = scene.BehaviorNos;
  25. // }
  26. // public string Id { get; set; }
  27. // public string No { get; set; }
  28. // public string Name { get; set; }
  29. // public string Path { get; set; }
  30. // public string ParentPath { get; set; }
  31. // public Hashtable Variables { get; set; }
  32. // public int SceneType { get; set; }
  33. // public string Description { get; set; }
  34. // public string BehaviorNos { get; set; }
  35. // public decimal Score { get; set; }
  36. // public decimal FullScore { get; set; }
  37. // public List<BehaviorDto> Behaviors { get; set; }
  38. // }
  39. // public class BehaviorDto
  40. // {
  41. // public BehaviorDto(BehaviorDataNode running)
  42. // {
  43. // Id = running.Id;
  44. // No = running.No;
  45. // Name = running.Name;
  46. // Score = running.SystemScore;
  47. // FullScore = running.FullScore;
  48. // }
  49. // public string Id { get; set; }
  50. // public string No { get; set; }
  51. // public string Name { get; set; }
  52. // public decimal Score { get; set; }
  53. // public decimal FullScore { get; set; }
  54. // public string Description { get; set; }
  55. // }
  56. //}