mirror of
https://github.com/bitwarden/server.git
synced 2025-05-14 16:12:18 -05:00
13 lines
328 B
C#
13 lines
328 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; }
|
|
}
|