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