1
0
mirror of https://github.com/bitwarden/server synced 2025-12-23 03:33:35 +00:00
Files
server/src/Api/Models/Request/Accounts/VerifyEmailRequestModel.cs
2022-08-29 14:53:16 -04:00

12 lines
241 B
C#

using System.ComponentModel.DataAnnotations;
namespace Bit.Api.Models.Request.Accounts;
public class VerifyEmailRequestModel
{
[Required]
public string UserId { get; set; }
[Required]
public string Token { get; set; }
}