1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-20 10:13:42 +00:00

add shared controllers and view to ios core

This commit is contained in:
Kyle Spearrin
2019-06-27 15:48:25 -04:00
parent fb3009fc66
commit 9c2cbc0ecb
15 changed files with 1546 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ namespace Bit.iOS.Core.Models
{
public CipherViewModel(CipherView cipher)
{
CipherView = cipher;
Id = cipher.Id;
Name = cipher.Name;
Username = cipher.Login?.Username;
@@ -26,6 +27,7 @@ namespace Bit.iOS.Core.Models
public List<LoginUriModel> Uris { get; set; }
public string Totp { get; set; }
public List<Tuple<string, string>> Fields { get; set; }
public CipherView CipherView { get; set; }
public class LoginUriModel
{