mirror of
https://github.com/bitwarden/server
synced 2026-01-17 16:03:49 +00:00
14 lines
334 B
C#
14 lines
334 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.AdminConsole.Models.Request.Organizations;
|
|
|
|
public class OrganizationDomainSsoDetailsRequestModel
|
|
{
|
|
[Required]
|
|
[EmailAddress]
|
|
public string Email { get; set; }
|
|
}
|