mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 08:02:49 -05:00
12 lines
232 B
C#
12 lines
232 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.Models.Request.Accounts;
|
|
|
|
public class DeleteRecoverRequestModel
|
|
{
|
|
[Required]
|
|
[EmailAddress]
|
|
[StringLength(256)]
|
|
public string Email { get; set; }
|
|
}
|