using System.Runtime.InteropServices;
using ProtonVPN.OperatingSystems.WebAuthn.Interop.Marshalers;
namespace ProtonVPN.OperatingSystems.WebAuthn.Interop.Structs;
///
/// Information about credential list with extra information.
///
/// Corresponds to WEBAUTHN_CREDENTIALS.
[StructLayout(LayoutKind.Sequential)]
public sealed class Credentials : SafeStructArrayIn
{
public Credentials(CredentialIn[] credentials) : base(credentials) { }
}