- using System.Collections.Generic;
- namespace Core.BattleReport
- {
- /// <summary>
- /// 战斗描述模块
- /// </summary>
- public class BattleReportMassgeDataModule
- {
- public string name;
- public List<ReportFightMassgeLogData> ReportFightMassgeLogDatas = new List<ReportFightMassgeLogData>();
- }
- }
|