mirror of
https://github.com/bitwarden/mobile
synced 2026-01-06 18:43:43 +00:00
17 lines
332 B
C#
17 lines
332 B
C#
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);
|
|
}
|
|
}
|
|
}
|