SnapDotNet.Apps.ViewModels.ViewModelBase.ViewModelBase C# (CSharp) Method

ViewModelBase() public method

public ViewModelBase ( ) : System.Windows.Input
return 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