// Token: 0x06004AEB RID: 19179 RVA: 0x00175398 File Offset: 0x00173598
        public override object SerializeToClient()
        {
            DSFixedStoreNtf dsfixedStoreNtf = new DSFixedStoreNtf();

            dsfixedStoreNtf.Version = (uint)base.Version;
            dsfixedStoreNtf.Stores.AddRange(FixedStore.FixedStoresToPBFixedStores(this.Stores.Values.ToList <FixedStore>()));
            return(dsfixedStoreNtf);
        }
 // Token: 0x06006F6A RID: 28522 RVA: 0x001F2958 File Offset: 0x001F0B58
 public void DeSerialize(DSFixedStoreNtf ntf)
 {
     if (!BJLuaObjHelper.IsSkipLuaHotfix && this.TryInitHotFix("") && this.m_DeSerializeDSFixedStoreNtf_hotfix != null)
     {
         this.m_DeSerializeDSFixedStoreNtf_hotfix.call(new object[]
         {
             this,
             ntf
         });
         return;
     }
     BJLuaObjHelper.IsSkipLuaHotfix = false;
     this.InitStores(ntf.Stores);
     this.m_fixedStoreDS.InitVersion((ushort)ntf.Version, (ushort)ntf.Version);
 }