1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-05 10:03:26 +00:00

view page updates

This commit is contained in:
Kyle Spearrin
2019-04-26 21:53:39 -04:00
parent d7312e2977
commit 9b2ce98b46
4 changed files with 85 additions and 7 deletions

View File

@@ -0,0 +1,25 @@
using Bit.App.Pages;
using Bit.Core.Models.View;
namespace Bit.App.Models
{
public class ViewFieldViewModel : BaseViewModel
{
private FieldView _field;
public ViewFieldViewModel(FieldView field)
{
Field = field;
}
public FieldView Field
{
get => _field;
set => SetProperty(ref _field, value,
additionalPropertyNames: new string[]
{
});
}
}
}