1
0
mirror of https://github.com/bitwarden/server synced 2025-12-16 00:03:54 +00:00
Files
server/src/Core/Models/Business/U2fRegistration.cs
2017-06-21 22:33:45 -04:00

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; }
}
}