mirror of
https://github.com/bitwarden/server.git
synced 2025-07-13 21:57:30 -05:00
19 lines
564 B
C#
19 lines
564 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Bit.Api.AdminConsole.Models.Request.Organizations;
|
|
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.Api.Models.Request.Organizations;
|
|
|
|
public class OrganizationCreateLicenseRequestModel : LicenseRequestModel
|
|
{
|
|
[Required]
|
|
public string Key { get; set; }
|
|
[EncryptedString]
|
|
[EncryptedStringLength(1000)]
|
|
public string CollectionName { get; set; }
|
|
public OrganizationKeysRequestModel Keys { get; set; }
|
|
}
|