mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 00:22:50 -05:00
10 lines
203 B
C#
10 lines
203 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.AdminConsole.Models.Request;
|
|
|
|
public class OrganizationDomainRequestModel
|
|
{
|
|
[Required]
|
|
public string DomainName { get; set; }
|
|
}
|