public PackageLocation(PackageLocationType Type, dynamic Location, Int32 Radius)
 {
     this.Type     = Type;
     this.Location = Location;
     this.Radius   = Radius;
 }
 public PackageLocation()
 {
     Type     = new PackageLocationType();
     Location = new UInt32();
     Radius   = new Int32();
 }