mirror of
https://github.com/bitwarden/mobile
synced 2025-12-28 06:03:40 +00:00
12 lines
423 B
C#
12 lines
423 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Bit.App.Models.Api;
|
|
|
|
namespace Bit.App.Abstractions
|
|
{
|
|
public interface ICipherApiRepository : IApiRepository<CipherRequest, CipherResponse, string>
|
|
{
|
|
Task<ApiResult<CipherResponse>> PostAttachmentAsync(string cipherId, byte[] data, string key, string fileName);
|
|
Task<ApiResult> DeleteAttachmentAsync(string cipherId, string attachmentId);
|
|
}
|
|
} |