using System.Collections.Generic; namespace WeEngine.CommonDto.ReportDto { public class ReportRoundSceneDto { public int RoundIndex { get; set; } public List SceneInfos { get; set; } public List BehaviorTags { get; set; } } }