using System; using System.Threading.Tasks; using Bit.App.Models.Api; namespace Bit.App.Abstractions { public interface ICipherApiRepository : IApiRepository { Task> PostAttachmentAsync(string cipherId, byte[] data, string key, string fileName); Task DeleteAttachmentAsync(string cipherId, string attachmentId); } }