mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00
13 lines
262 B
C#
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; }
|
|
}
|
|
}
|