Files
server/src/Core/Models/Table/U2f.cs

21 lines
543 B
C#
Raw Normal View History

2017-06-21 16:55:45 -04:00
using System;
namespace Bit.Core.Models.Table
{
2017-07-14 09:05:15 -04:00
public class U2f : ITableObject<int>
2017-06-21 16:55:45 -04:00
{
public int Id { get; set; }
public Guid UserId { get; set; }
public string KeyHandle { get; set; }
public string Challenge { get; set; }
public string AppId { get; set; }
public string Version { get; set; }
public DateTime CreationDate { get; internal set; } = DateTime.UtcNow;
public void SetNewId()
{
// do nothing since it is an identity
}
}
}