Files
server/src/Api/AdminConsole/Models/Request/Providers/ProviderOrganizationAddRequestModel.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
272 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
2021-06-30 09:35:26 +02:00
namespace Bit.Api.AdminConsole.Models.Request.Providers;
2022-08-29 16:06:55 -04:00
2021-12-14 15:05:07 +00:00
public class ProviderOrganizationAddRequestModel
2021-06-30 09:35:26 +02:00
{
[Required]
public Guid OrganizationId { get; set; }
[Required]
public string Key { get; set; }
}