mirror of
https://github.com/bitwarden/mobile
synced 2025-12-29 06:33:53 +00:00
16 lines
319 B
C#
16 lines
319 B
C#
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.App.Pages
|
|
{
|
|
public abstract class BaseViewModel : ExtendedViewModel
|
|
{
|
|
private string _pageTitle = string.Empty;
|
|
|
|
public string PageTitle
|
|
{
|
|
get => _pageTitle;
|
|
set => SetProperty(ref _pageTitle, value);
|
|
}
|
|
}
|
|
}
|