private void OnDeserialized()
 {
     if (noteStorageBytes != null)
     {
         noteStorage.Deserialize(new BinaryReader(new MemoryStream(noteStorageBytes)));
         noteStorageBytes = null;
     }
 }