mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
22 lines
471 B
C#
22 lines
471 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Bit.App.Pages
|
|||
|
{
|
|||
|
public partial class EnvironmentPage : BaseContentPage
|
|||
|
{
|
|||
|
private EnvironmentPageViewModel _vm;
|
|||
|
|
|||
|
public EnvironmentPage()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
_vm = BindingContext as EnvironmentPageViewModel;
|
|||
|
_vm.Page = this;
|
|||
|
}
|
|||
|
|
|||
|
private async void Submit_Clicked(object sender, EventArgs e)
|
|||
|
{
|
|||
|
await _vm.SubmitAsync();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|