mirror of
https://github.com/bitwarden/server
synced 2025-12-18 17:23:28 +00:00
initial commit of source
This commit is contained in:
11
src/Api/Models/Request/Accounts/RegisterTokenRequestModel.cs
Normal file
11
src/Api/Models/Request/Accounts/RegisterTokenRequestModel.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Bit.Api.Models
|
||||
{
|
||||
public class RegisterTokenRequestModel
|
||||
{
|
||||
[Required]
|
||||
[EmailAddress]
|
||||
public string Email { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user