mirror of
https://github.com/bitwarden/server
synced 2025-12-13 23:03:36 +00:00
* send work * fix sql proj file * update * updates * access id * delete job * fix delete job * local send storage * update sprocs for null checks
16 lines
420 B
C#
16 lines
420 B
C#
using Bit.Core.Models.Table;
|
|
using System;
|
|
using System.IO;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface ISendFileStorageService
|
|
{
|
|
Task UploadNewFileAsync(Stream stream, Send send, string fileId);
|
|
Task DeleteFileAsync(string fileId);
|
|
Task DeleteFilesForOrganizationAsync(Guid organizationId);
|
|
Task DeleteFilesForUserAsync(Guid userId);
|
|
}
|
|
}
|