using StopShopping.Services.Models;
using StopShopping.Services.Models.Req;
using StopShopping.Services.Models.Resp;
namespace StopShopping.Services;
///
/// 文件服务
///
public interface IFileService
{
///
/// 上传文件
///
///
///
Task> UploadFileAsync(UploadParams payload);
///
/// 获取文件链接
///
///
///
///
string GetFileUrl(UploadScences scences, string fileName);
}