mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
14 lines
273 B
C#
14 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";
|
|
}
|
|
}
|
|
}
|