// FIXME: Update this file to be null safe and then delete the line below #nullable disable namespace Bit.Api.Vault.Models.Request; public class CipherBulkUpdateCollectionsRequestModel { public Guid OrganizationId { get; set; } public IEnumerable CipherIds { get; set; } public IEnumerable CollectionIds { get; set; } /// /// If true, the collections will be removed from the ciphers. Otherwise, they will be added. /// public bool RemoveCollections { get; set; } }