// Token: 0x06004CBA RID: 19642 RVA: 0x00179230 File Offset: 0x00177430
        public override object SerializeToClient()
        {
            DSRandomStoreNtf dsrandomStoreNtf = new DSRandomStoreNtf();

            dsrandomStoreNtf.Version = (uint)base.Version;
            dsrandomStoreNtf.Stores.AddRange(RandomStore.StoresToPBStores(this.Stores));
            return(dsrandomStoreNtf);
        }
 // Token: 0x060075B3 RID: 30131 RVA: 0x00203A34 File Offset: 0x00201C34
 public void DeSerialize(DSRandomStoreNtf ntf)
 {
     if (!BJLuaObjHelper.IsSkipLuaHotfix && this.TryInitHotFix("") && this.m_DeSerializeDSRandomStoreNtf_hotfix != null)
     {
         this.m_DeSerializeDSRandomStoreNtf_hotfix.call(new object[]
         {
             this,
             ntf
         });
         return;
     }
     BJLuaObjHelper.IsSkipLuaHotfix = false;
     this.InitStores(ntf.Stores);
     this.m_randomStoreDS.InitVersion((ushort)ntf.Version, (ushort)ntf.Version);
 }