mirror of
https://github.com/bitwarden/mobile
synced 2025-12-28 22:23:35 +00:00
19 lines
387 B
C#
19 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; }
|
|
}
|
|
}
|