mirror of
https://github.com/bitwarden/android.git
synced 2025-01-06 00:07:54 +03:00
22 lines
435 B
C#
22 lines
435 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Bit.App.Pages
|
|||
|
{
|
|||
|
public partial class OptionsPage : BaseContentPage
|
|||
|
{
|
|||
|
private readonly OptionsPageViewModel _vm;
|
|||
|
|
|||
|
public OptionsPage()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
_vm = BindingContext as OptionsPageViewModel;
|
|||
|
_vm.Page = this;
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnAppearing()
|
|||
|
{
|
|||
|
base.OnAppearing();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|