mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
13 lines
252 B
C#
13 lines
252 B
C#
namespace Bit.App.Pages
|
|
{
|
|
public class SettingsPageHeaderListItem : ISettingsPageListItem
|
|
{
|
|
public SettingsPageHeaderListItem(string title)
|
|
{
|
|
Title = title;
|
|
}
|
|
|
|
public string Title { get; }
|
|
}
|
|
}
|