mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
18 lines
387 B
C#
18 lines
387 B
C#
using Bit.Core.Utilities;
|
|
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Pages
|
|
{
|
|
public abstract class BaseViewModel : ExtendedViewModel
|
|
{
|
|
private string _pageTitle = string.Empty;
|
|
|
|
public string PageTitle
|
|
{
|
|
get => _pageTitle;
|
|
set => SetProperty(ref _pageTitle, value);
|
|
}
|
|
|
|
public ContentPage Page { get; set; }
|
|
}
|
|
}
|