using System.Collections.Generic; namespace ET.Server { [ComponentOf(typeof (Map))] public class MapRankComponent: Entity, IAwake, IDestroy, IUpdate { /** 每隔3秒推送排名时间 **/ public long NextPushTime { get; set; } /** 上一次推送列表 **/ [StaticField] public List LastInfoListProto = new List(); } }