public override void Deserialize(ICustomDataInput reader)
        {
            base.Deserialize(reader);
            var portalTypeId = reader.ReadShort();

            Portal = new PortalInformation();
            Portal.Deserialize(reader);
        }
 public GameRolePlayPortalInformations(
     double contextualId,
     EntityLook look,
     EntityDispositionInformations disposition,
     PortalInformation portal
     ) : base(
         contextualId,
         look,
         disposition
         )
 {
     Portal = portal;
 }