mirror of
https://github.com/bitwarden/android.git
synced 2024-12-28 11:58:30 +03:00
16 lines
361 B
C#
16 lines
361 B
C#
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);
|
|
}
|
|
}
|
|
}
|