FileUploadInfoDto.cs 371 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ShwasherSys.ProductInfo.Dto.FileUpload
  7. {
  8. public class FileUploadInfoDto
  9. {
  10. public string FileInfo { get; set; }
  11. public string FileName { get; set; }
  12. public string FileExt { get; set; }
  13. }
  14. }