SnapDotNet.Apps.ViewModels.ViewModelBase.ViewModelBase C# (CSharp) Метод

ViewModelBase() публичный Метод

public ViewModelBase ( ) : System.Windows.Input
Результат System.Windows.Input
        public ViewModelBase()
        {
            GoToSettingsCommand = new RelayCommand(() =>
            {
            #if WINDOWS_PHONE_APP
                App.CurrentFrame.Navigate((typeof (SettingsPage)));
            #endif
            });
            RefreshCommand = new RelayCommand(App.UpdateSnapchatData);
            LogoutCommand = new RelayCommand(async () => await App.LogoutAsync());
        }
ViewModelBase