mirror of
https://github.com/bitwarden/server.git
synced 2026-02-05 16:43:14 +08:00
13 lines
277 B
C#
13 lines
277 B
C#
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|
|||
|
|
namespace Bit.Admin.AdminConsole.Models;
|
|||
|
|
|
|||
|
|
public class OrganizationInitiateDeleteModel
|
|||
|
|
{
|
|||
|
|
[Required]
|
|||
|
|
[EmailAddress]
|
|||
|
|
[StringLength(256)]
|
|||
|
|
[Display(Name = "Admin Email")]
|
|||
|
|
public string AdminEmail { get; set; }
|
|||
|
|
}
|