mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05: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; }
|
|
}
|
|
}
|