using System.Collections.Generic; namespace Wizard; public class AIBattleStartDetail { public class UserInfo { public Dictionary DataDictionary; public UserInfo() { DataDictionary = new Dictionary(); } } public int AIid; public UserInfo SelfInfo; public UserInfo OppoInfo; public AIBattleStartDetail() { SelfInfo = new UserInfo(); OppoInfo = new UserInfo(); } }