namespace StopShopping.FileApi.Services; /// /// 文件上传结果 /// public class FileUploadResp { /// /// 新名,上传后重命名 /// /// public string NewName { get; set; } = string.Empty; /// /// Url /// /// public string Url { get; set; } = string.Empty; }