1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-03 09:03:35 +00:00

add autofill resources

This commit is contained in:
Kyle Spearrin
2019-06-26 20:52:17 -04:00
parent 5f474dfaf5
commit 88aea96034
16 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
/*
using AuthenticationServices;
using Bit.iOS.Core.Models;
using Foundation;
namespace Bit.iOS.Autofill.Models
{
public class Context : AppExtensionContext
{
public NSExtensionContext ExtContext { get; set; }
public ASCredentialServiceIdentifier[] ServiceIdentifiers { get; set; }
public ASPasswordCredentialIdentity CredentialIdentity { get; set; }
public bool Configuring { get; set; }
}
}
*/