mirror of
https://github.com/bitwarden/server
synced 2025-12-22 03:03:33 +00:00
16 lines
443 B
C#
16 lines
443 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.Billing.Models.Requests;
|
|
|
|
public class AddExistingOrganizationRequestBody
|
|
{
|
|
[Required(ErrorMessage = "'key' must be provided")]
|
|
public string Key { get; set; }
|
|
|
|
[Required(ErrorMessage = "'organizationId' must be provided")]
|
|
public Guid OrganizationId { get; set; }
|
|
}
|