1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 16:12:49 -05:00
Files
bitwarden/src/Api/Models/Request/Accounts/PasswordHintRequestModel.cs
2022-08-29 16:06:55 -04:00

12 lines
231 B
C#

using System.ComponentModel.DataAnnotations;
namespace Bit.Api.Models.Request.Accounts;
public class PasswordHintRequestModel
{
[Required]
[EmailAddress]
[StringLength(256)]
public string Email { get; set; }
}