Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/Picture/PictureUploadOutputDto.cs 351 Bytes
59e51671   “wangming”   1
1
2
3
4
5
6
7
8
9
10
11
12
13
  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; }
  }