mirror of
https://github.com/bitwarden/mobile
synced 2025-12-15 15:53:44 +00:00
15 lines
354 B
C#
15 lines
354 B
C#
namespace Bit.App.Pages
|
|
{
|
|
public class GroupingsPageHeaderListItem : IGroupingsPageListItem
|
|
{
|
|
public GroupingsPageHeaderListItem(string title, string itemCount)
|
|
{
|
|
Title = title;
|
|
ItemCount = itemCount;
|
|
}
|
|
|
|
public string Title { get; }
|
|
public string ItemCount { get; set; }
|
|
}
|
|
}
|