mirror of
https://github.com/bitwarden/server
synced 2025-12-23 11:43:23 +00: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