AppReportMapping.cs 372 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using AutoMapper;
  5. using GxPress.Entity;
  6. using GxPress.Request.App.AppReport;
  7. using GxPress.Result.App.FileLibrary;
  8. namespace GxPress.Mappings
  9. {
  10. class AppReportMapping : Profile
  11. {
  12. public AppReportMapping()
  13. {
  14. CreateMap<AppReportRequest, AppReport>();
  15. }
  16. }
  17. }