Files
server/src/Core/Services/IAttachmentStorageService.cs

12 lines
255 B
C#
Raw Normal View History

using System.IO;
using System.Threading.Tasks;
namespace Bit.Core.Services
{
public interface IAttachmentStorageService
{
Task UploadAttachmentAsync(Stream stream, string name);
Task DeleteAttachmentAsync(string name);
}
}