1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-06 18:43:43 +00:00
Files
mobile/src/App/Controls/CipherViewCell/CipherViewCellViewModel.cs
2019-03-29 16:52:57 -04:00

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);
}
}
}