mirror of
https://github.com/bitwarden/mobile
synced 2025-12-15 07:43:37 +00:00
13 lines
193 B
C#
13 lines
193 B
C#
using System;
|
|
|
|
namespace Bit.App.Pages
|
|
{
|
|
public class HomeViewModel : BaseViewModel
|
|
{
|
|
public HomeViewModel()
|
|
{
|
|
PageTitle = "Home Page";
|
|
}
|
|
}
|
|
}
|