MapperConfigs.cs 345 B

12345678910111213141516171819
  1. using Mapster;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using Hotline.Share.Dtos.Order;
  8. namespace DataSharing.Application.Mappers
  9. {
  10. public class MapperConfigs : IRegister
  11. {
  12. public void Register(TypeAdapterConfig config)
  13. {
  14. }
  15. }
  16. }