BattleReportMassgeDataModule.cs 328 B

12345678910111213
  1. using System.Collections.Generic;
  2. namespace Core.BattleReport
  3. {
  4. /// <summary>
  5. /// 战斗描述模块
  6. /// </summary>
  7. public class BattleReportMassgeDataModule
  8. {
  9. public string name;
  10. public List<ReportFightMassgeLogData> ReportFightMassgeLogDatas = new List<ReportFightMassgeLogData>();
  11. }
  12. }