Files
server/src/Api/Tools/Models/Request/Organizations/ImportOrganizationCiphersRequestModel.cs
2025-07-08 20:02:15 +02:00

15 lines
469 B
C#

// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using Bit.Api.Models.Request;
using Bit.Api.Vault.Models.Request;
namespace Bit.Api.Tools.Models.Request.Organizations;
public class ImportOrganizationCiphersRequestModel
{
public CollectionWithIdRequestModel[] Collections { get; set; }
public CipherRequestModel[] Ciphers { get; set; }
public KeyValuePair<int, int>[] CollectionRelationships { get; set; }
}