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