1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-19 17:53:47 +00:00

share page

This commit is contained in:
Kyle Spearrin
2019-05-10 13:22:35 -04:00
parent 9aef584494
commit 9668bd85c1
10 changed files with 384 additions and 17 deletions

View File

@@ -0,0 +1,16 @@
using Bit.Core.Utilities;
namespace Bit.App.Pages
{
public class CollectionViewModel : ExtendedViewModel
{
private bool _checked;
public Core.Models.View.CollectionView Collection { get; set; }
public bool Checked
{
get => _checked;
set => SetProperty(ref _checked, value);
}
}
}