mirror of
https://github.com/bitwarden/mobile
synced 2026-02-13 14:53:19 +00:00
* PM-7553 Fix native apps passkeys autofill and creation * PM-7658 Implemented Fido2 priviliged apps verification * PM-7576 Implemented digital asset links verification on Fido2 flows for native apps. * PM-7576 Renamed to ValidateAssetLinksAndGetOriginAsync to go along with Google naming and also changed method to private given that public is not necessary * PM-7576 Moved digital asset links verification to a Core service AssetLinksService and added unit tests for it.
9 lines
191 B
C#
9 lines
191 B
C#
namespace Bit.Core.Utilities.DigitalAssetLinks
|
|
{
|
|
public class Statement
|
|
{
|
|
public IEnumerable<string> Relation { get; set; }
|
|
public Target Target { get; set; }
|
|
}
|
|
}
|