public static AppleNotification WithPasskitUpdate(this AppleNotification n)
        {
            var payLoad = new AppleNotificationPayload();

            payLoad.AddCustom("aps", string.Empty);

            n.Payload = payLoad;

            return(n);
        }