mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 23:52:50 -05:00
9 lines
297 B
C#
9 lines
297 B
C#
namespace Bit.Api.Models.Request.Organizations;
|
|
|
|
public class ImportOrganizationCiphersRequestModel
|
|
{
|
|
public CollectionRequestModel[] Collections { get; set; }
|
|
public CipherRequestModel[] Ciphers { get; set; }
|
|
public KeyValuePair<int, int>[] CollectionRelationships { get; set; }
|
|
}
|