using System.Collections.Generic; namespace ET.Server { [ComponentOf(typeof (WNPlayer))] public class PlayerSkillComponent: Entity, IAwake, IDestroy { /** 玩家技能数据 **/ public PlayerSkillInfo Data { get; set; } /** 战斗服技能数据 **/ public List ToJson4BattleServerSkills { get; set; } } }