Bitwarden-app-android-iphon.../src/App/Pages/BaseViewModel.cs

19 lines
387 B
C#
Raw Normal View History

2019-03-29 17:52:57 +01:00
using Bit.Core.Utilities;
2019-04-05 04:28:03 +02:00
using Xamarin.Forms;
2019-03-28 22:10:10 +01:00
2019-03-29 04:52:33 +01:00
namespace Bit.App.Pages
2019-03-28 22:10:10 +01:00
{
2019-03-29 17:52:57 +01:00
public abstract class BaseViewModel : ExtendedViewModel
2019-03-28 22:10:10 +01:00
{
private string _pageTitle = string.Empty;
public string PageTitle
{
get => _pageTitle;
set => SetProperty(ref _pageTitle, value);
}
2019-04-05 04:28:03 +02:00
public ContentPage Page { get; set; }
2019-03-28 22:10:10 +01:00
}
}