mirror of
https://github.com/bitwarden/server.git
synced 2026-02-11 19:33:21 +08:00
13 lines
242 B
C#
13 lines
242 B
C#
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|
|||
|
|
namespace Bit.Api.Models.Request;
|
|||
|
|
|
|||
|
|
public class OrganizationDomainRequestModel
|
|||
|
|
{
|
|||
|
|
[Required]
|
|||
|
|
public string Txt { get; set; }
|
|||
|
|
|
|||
|
|
[Required]
|
|||
|
|
public string DomainName { get; set; }
|
|||
|
|
}
|