mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 16:12:49 -05:00
15 lines
414 B
C#
15 lines
414 B
C#
using System.ComponentModel.DataAnnotations;
|
|
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; }
|
|
}
|