| 12345678910111213141516171819 |
- using Abp.Application.Services.Dto;
- using Abp.AutoMapper;
- using VberZero.BaseSystem;
- namespace VberZero.AppService.Attaches.Dto;
- [AutoMapTo(typeof(SysAttach)), AutoMapFrom(typeof(SysAttach))]
- public class AttachFileDto : EntityDto<int>
- {
- public string CodeKey { get; set; }
- public string SourceKey { get; set; }
- public string FileTitle { get; set; }
- public string FileName { get; set; }
- public string FilePath { get; set; }
- public int FileType { get; set; }
- public string FileExt { get; set; }
- public string Description { get; set; }
- }
|