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