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

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

15 lines
303 B
C#
Raw Normal View History

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