mirror of
https://github.com/bitwarden/android.git
synced 2024-12-29 04:18:33 +03:00
17 lines
361 B
C#
17 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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|