1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-04 20:50:21 -05:00
bitwarden/src/Api/Models/Request/Auth/AuthTokenTwoFactorRequestModel.cs
2015-12-08 22:57:38 -05:00

13 lines
262 B
C#

using System.ComponentModel.DataAnnotations;
namespace Bit.Api.Models
{
public class AuthTokenTwoFactorRequestModel
{
[Required]
public string Code { get; set; }
[Required]
public string Provider { get; set; }
}
}