/// <summary>
 /// Adds the versioning to the mobile message.
 /// </summary>
 public void SetVersioning(byte configVer, byte routeVer, ReadOnlyCollection <DeviceCatalogueInfo> catalogue)
 {
     mVersioning = new Versioning(configVer, routeVer, catalogue);
 }
 /// <summary>
 /// Clears the device catalog information from the mobile message.
 /// </summary>
 public void ClearVersioning()
 {
     mVersioning = null;
 }
 /// <summary>
 /// Adds the versioning to the mobile message.
 /// </summary>
 /// <param name="versioning">Versioning class containing the versioning information.</param>
 public void SetVersioning(Versioning versioning)
 {
     mVersioning = versioning;
 }