| 1234567891011121314151617181920212223242526272829303132333435 |
- using System.Collections;
- using System.Collections.Generic;
- using WeEngine.ModelInfo;
- namespace WeEngine.CommonDto.ReportDto
- {
- public class ReportSceneDto
- {
- public ReportSceneDto(SceneModel scene)
- {
- Description = scene.Description;
- Id = scene.Id;
- No = scene.No;
- Name = scene.Name;
- Path = scene.Path;
- ParentPath = scene.ParentPath;
- Variables = scene.Variables;
- SceneType = scene.SceneType;
- BehaviorNos = scene.BehaviorNos;
- }
- public string Id { get; set; }
- public string No { get; set; }
- public string Name { get; set; }
- public string Path { get; set; }
- public string ParentPath { get; set; }
- public Hashtable Variables { get; set; }
- public int SceneType { get; set; }
- public string Description { get; set; }
- public string BehaviorNos { get; set; }
- public decimal Score { get; set; }
- public decimal FullScore { get; set; }
- public List<ReportBehaviorTagDto> BehaviorTags { get; set; }
- public List<BehaviorDto> Behaviors { get; set; }
- }
- }
|