mirror of
https://github.com/bitwarden/server
synced 2025-12-23 19:53:40 +00:00
Added cipher service with bulk import to account controller
This commit is contained in:
12
src/Api/Models/Request/Accounts/ImportRequestModel.cs
Normal file
12
src/Api/Models/Request/Accounts/ImportRequestModel.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Bit.Api.Models
|
||||
{
|
||||
public class ImportRequestModel
|
||||
{
|
||||
public FolderRequestModel[] Folders { get; set; }
|
||||
public SiteRequestModel[] Sites { get; set; }
|
||||
public KeyValuePair<int, int>[] SiteRelationships { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user