1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-28 10:54:59 +02:00
bitwarden-mobile/src/App/Pages/SettingsPageViewModel.cs

15 lines
261 B
C#
Raw Normal View History

2019-03-29 04:52:33 +01:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Bit.App.Pages
{
public class SettingsPageViewModel : BaseViewModel
{
public SettingsPageViewModel()
{
PageTitle = "Settings";
}
}
}