mirror of
https://github.com/bitwarden/server.git
synced 2025-05-20 11:04:31 -05:00
13 lines
243 B
C#
13 lines
243 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.Models
|
|
{
|
|
public class PasswordHintRequestModel
|
|
{
|
|
[Required]
|
|
[EmailAddress]
|
|
[StringLength(50)]
|
|
public string Email { get; set; }
|
|
}
|
|
}
|