mirror of
https://github.com/bitwarden/server.git
synced 2025-05-15 00:19:11 -05:00
14 lines
358 B
C#
14 lines
358 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Api.Models.Request.Organizations
|
|
{
|
|
public class OrganizationSponsorshipRedeemRequestModel
|
|
{
|
|
[Required]
|
|
public PlanSponsorshipType PlanSponsorshipType { get; set; }
|
|
[Required]
|
|
public Guid SponsoredOrganizationId { get; set; }
|
|
}
|
|
}
|