1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-27 03:52:57 +02:00
bitwarden-mobile/src/App/Controls/CipherViewCell/CipherViewCellViewModel.cs

17 lines
332 B
C#
Raw Normal View History

2019-03-29 21:52:57 +01:00
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);
}
}
}