mirror of
https://github.com/bitwarden/mobile
synced 2025-12-29 06:33:53 +00:00
15 lines
246 B
C#
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";
|
|
}
|
|
}
|
|
}
|