public override Task OnNavigatedToAsync(object parameter, NavigationMode mode, IDictionary <string, object> state)
        {
            ProtoService.GetAccountTTLAsync(result =>
            {
                BeginOnUIThread(() => AccountTTL = result.Days);
            });

            return(base.OnNavigatedToAsync(parameter, mode, state));
        }