1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-10-05 05:08:03 +02:00
bitwarden-mobile/src/App/Pages/GeneratorPageViewModel.cs
2019-03-28 23:52:33 -04:00

15 lines
273 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Bit.App.Pages
{
public class GeneratorPageViewModel : BaseViewModel
{
public GeneratorPageViewModel()
{
PageTitle = "Password Generator";
}
}
}