mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
16 lines
452 B
C#
16 lines
452 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; }
|
|
}
|
|
}
|