1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-29 06:33:53 +00:00
Files
mobile/src/App/Pages/HomePageViewModel.cs
2019-03-28 23:52:33 -04:00

15 lines
246 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Bit.App.Pages
{
public class HomeViewModel : BaseViewModel
{
public HomeViewModel()
{
PageTitle = "Home Page";
}
}
}