1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-25 19:41:19 -05:00
Files
bitwarden/src/Api/Tools/Models/Request/Accounts/ImportCiphersRequestModel.cs
2025-07-08 20:02:15 +02:00

14 lines
410 B
C#

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