mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 14:13:18 +08:00
13 lines
262 B
C#
13 lines
262 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.Models.Request.Accounts
|
|
{
|
|
public class DeleteRecoverRequestModel
|
|
{
|
|
[Required]
|
|
[EmailAddress]
|
|
[StringLength(256)]
|
|
public string Email { get; set; }
|
|
}
|
|
}
|