mirror of
https://github.com/bitwarden/server.git
synced 2026-02-12 20:03:25 +08:00
12 lines
255 B
C#
12 lines
255 B
C#
|
|
using System.IO;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Services
|
|||
|
|
{
|
|||
|
|
public interface IAttachmentStorageService
|
|||
|
|
{
|
|||
|
|
Task UploadAttachmentAsync(Stream stream, string name);
|
|||
|
|
Task DeleteAttachmentAsync(string name);
|
|||
|
|
}
|
|||
|
|
}
|