mirror of
https://github.com/bitwarden/android.git
synced 2024-11-02 16:14:00 +03:00
11 lines
277 B
C#
11 lines
277 B
C#
using Bit.Core.Models.View;
|
|
|
|
namespace Bit.App.Pages
|
|
{
|
|
public class GroupingsPageListItem
|
|
{
|
|
public FolderView Folder { get; set; }
|
|
public Core.Models.View.CollectionView Collection { get; set; }
|
|
public CipherView Cipher { get; set; }
|
|
}
|
|
}
|