Files
Govor/Govor.API/Services/IStorageService.cs
T
Artemy 7831e4838a rework messages
+ addition LocalStorageService
+ tests
2025-06-21 14:53:15 +07:00

10 lines
253 B
C#

using Microsoft.AspNetCore.Http; // для IFormFile
namespace Govor.API.Services;
public interface IStorageService
{
Task<string> SaveAsync(byte[] data, string fileName);
Task<Stream> LoadAsync(string url);
Task RemoveAsync(string url);
}