mirror of
https://github.com/bitwarden/mobile
synced 2026-01-09 20:13:18 +00:00
11 lines
266 B
C#
11 lines
266 B
C#
namespace Bit.Core.Utilities.Fido2
|
|
{
|
|
public class PublicKeyCredentialDescriptor {
|
|
public byte[] Id { get; set; }
|
|
public string IdStr { get; set; }
|
|
public string[] Transports { get; set; }
|
|
public string Type { get; set; }
|
|
}
|
|
}
|
|
|