mirror of
https://github.com/bitwarden/server
synced 2026-01-26 22:33:31 +00:00
15 lines
348 B
C#
15 lines
348 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.Api.AdminConsole.Models.Request;
|
|
|
|
public class OrganizationDomainRequestModel
|
|
{
|
|
[Required]
|
|
[DomainNameValidator]
|
|
public string DomainName { get; set; }
|
|
}
|