1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-15 00:19:11 -05:00
bitwarden/src/Api/Models/Request/Organizations/OrganizationSponsorshipRedeemRequestModel.cs
Justin Baur 231eb84e69
Turn On ImplicitUsings (#2079)
* Turn on ImplicitUsings

* Fix formatting

* Run linter
2022-06-29 19:46:41 -04:00

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; }
}
}