bitwarden-android/src/App/Pages/GeneratorPageViewModel.cs

15 lines
273 B
C#
Raw Normal View History

2019-03-29 06:52:33 +03:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Bit.App.Pages
{
public class GeneratorPageViewModel : BaseViewModel
{
public GeneratorPageViewModel()
{
PageTitle = "Password Generator";
}
}
}