mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
15 lines
261 B
C#
15 lines
261 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Bit.App.Pages
|
|||
|
{
|
|||
|
public class SettingsPageViewModel : BaseViewModel
|
|||
|
{
|
|||
|
public SettingsPageViewModel()
|
|||
|
{
|
|||
|
PageTitle = "Settings";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|