private async void LogInCommand()
        {
            IsDataLoading = true;

            WpaXmlRpcService service = new WpaXmlRpcService();
            var result = await service.GetProfile(Login, Password);

            IsDataLoading = false;

            if (!result)
            {
                await dialogService.ShowMessage("L'identifiant ou le mot de passe n'est pas correct", "Identification");
            }
            else
            {
                appSettings.Login = Login;
                appSettings.Password = Password;

                IsConnected = true;
            }
        }