bitwarden-mobile/src/App/Pages/Send/SendGroupingsPage/SendGroupingsPageHeaderList...

15 lines
361 B
C#
Raw Normal View History

namespace Bit.App.Pages
{
public class SendGroupingsPageHeaderListItem : ISendGroupingsPageListItem
{
public SendGroupingsPageHeaderListItem(string title, string itemCount)
{
Title = title;
ItemCount = itemCount;
}
public string Title { get; }
2022-04-26 17:21:17 +02:00
public string ItemCount { get; }
}
}