mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
22 lines
640 B
C#
22 lines
640 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Windows.Input;
|
|
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Pages
|
|
{
|
|
public class SettingsPageViewModel : BaseViewModel
|
|
{
|
|
public SettingsPageViewModel()
|
|
{
|
|
PageTitle = "Settings";
|
|
|
|
ButtonCommand = new Command(() => Page.DisplayAlert("Button 1 Command", "Button 1 message", "Cancel"));
|
|
Button2Command = new Command(() => Page.DisplayAlert("Button 2 Command", "Button 2 message", "Cancel"));
|
|
}
|
|
|
|
public ICommand ButtonCommand { get; }
|
|
public ICommand Button2Command { get; }
|
|
}
|
|
}
|