- using System.Collections.Generic;
- namespace WeEngine.CommonDto.ReportDto
- {
- public class ReportRoundSceneDto
- {
- public int RoundIndex { get; set; }
- public List<ReportSceneDto> SceneInfos { get; set; }
- public List<ReportBehaviorTagDto> BehaviorTags { get; set; }
- }
- }
|