void HideNotification(UpdateNotificationMode rpMode)
        {
            if (Info == null)
            {
                return;
            }

            Preference.Instance.Update.NotificationMode.Value = rpMode;
            Info.IsAvailable = false;
            OnPropertyChanged(nameof(Info));
        }
        void HideNotification(UpdateNotificationMode rpMode)
        {
            if (Info == null)
                return;

            Preference.Instance.Update.NotificationMode.Value = rpMode;
            Info.IsAvailable = false;
            OnPropertyChanged(nameof(Info));
        }