mirror of
https://github.com/bitwarden/server
synced 2025-12-11 05:43:35 +00:00
13 lines
272 B
C#
13 lines
272 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.AdminConsole.Models.Request.Providers;
|
|
|
|
public class ProviderOrganizationAddRequestModel
|
|
{
|
|
[Required]
|
|
public Guid OrganizationId { get; set; }
|
|
|
|
[Required]
|
|
public string Key { get; set; }
|
|
}
|