1
0
mirror of https://github.com/bitwarden/server synced 2026-01-26 22:33:31 +00:00
Files
server/src/Api/AdminConsole/Models/Request/OrganizationDomainRequestModel.cs
2026-01-23 08:34:19 -06:00

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; }
}