mirror of
https://github.com/bitwarden/server
synced 2025-12-16 00:03:54 +00:00
10 lines
219 B
C#
10 lines
219 B
C#
namespace Bit.Core.Models.Business
|
|
{
|
|
public class U2fRegistration
|
|
{
|
|
public string AppId { get; set; }
|
|
public string Challenge { get; set; }
|
|
public string Version { get; set; }
|
|
}
|
|
}
|