mirror of
https://github.com/bitwarden/server.git
synced 2026-02-11 11:23:14 +08:00
14 lines
289 B
C#
14 lines
289 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.Models.Request.Providers
|
|
{
|
|
public class ProviderOrganizationAddRequestModel
|
|
{
|
|
[Required]
|
|
public Guid OrganizationId { get; set; }
|
|
|
|
[Required]
|
|
public string Key { get; set; }
|
|
}
|
|
}
|