mirror of
https://github.com/bitwarden/mobile
synced 2025-12-13 23:03:23 +00:00
cipher view cell control
This commit is contained in:
16
src/App/Controls/CipherViewCell/CipherViewCellViewModel.cs
Normal file
16
src/App/Controls/CipherViewCell/CipherViewCellViewModel.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Bit.Core.Models.View;
|
||||
using Bit.Core.Utilities;
|
||||
|
||||
namespace Bit.App.Controls
|
||||
{
|
||||
public class CipherViewCellViewModel : ExtendedViewModel
|
||||
{
|
||||
private CipherView _cipher;
|
||||
|
||||
public CipherView Cipher
|
||||
{
|
||||
get => _cipher;
|
||||
set => SetProperty(ref _cipher, value);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user