mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 16:12:49 -05:00
Move request/response models (#1754)
This commit is contained in:
10
src/Api/Models/Request/Accounts/VerifyOTPRequestModel.cs
Normal file
10
src/Api/Models/Request/Accounts/VerifyOTPRequestModel.cs
Normal file
@ -0,0 +1,10 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Bit.Api.Models.Request.Accounts
|
||||
{
|
||||
public class VerifyOTPRequestModel
|
||||
{
|
||||
[Required]
|
||||
public string OTP { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user