namespace FoodLabeling.Application.Contracts.Dtos.Picture; public class PictureUploadOutputDto { /// /// 可直接保存到业务表的访问 URL(相对路径) /// public string Url { get; set; } = string.Empty; public string FileName { get; set; } = string.Empty; public long Size { get; set; } }