1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 08:02:49 -05:00

Invite Client owner at time of client org creation (#1488)

This commit is contained in:
Matt Gibson
2021-07-30 08:10:58 -05:00
committed by GitHub
parent fdaf6b14d4
commit 2298c96e30
6 changed files with 42 additions and 8 deletions

View File

@ -0,0 +1,14 @@
using System.ComponentModel.DataAnnotations;
using Bit.Core.Utilities;
namespace Bit.Core.Models.Api.Request
{
public class ProviderOrganizationCreateRequestModel
{
[Required]
[StrictEmailAddress]
public string ClientOwnerEmail { get; set; }
[Required]
public OrganizationCreateRequestModel OrganizationCreateRequest { get; set; }
}
}