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