mirror of
https://github.com/bitwarden/server.git
synced 2026-02-07 09:23:10 +08: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; }
|
|
}
|
|
}
|