WaitHandleMapping.cs 294 B

12345678910111213141516
  1. using AutoMapper;
  2. using GxPress.Entity.WaitHandle;
  3. using GxPress.Request.App.WaitHandle;
  4. namespace GxPress.Mappings
  5. {
  6. class WaitHandleMapping : Profile
  7. {
  8. public WaitHandleMapping()
  9. {
  10. CreateMap<WaitHandleAddOrUpdateRequest, WaitHandle>();
  11. }
  12. }
  13. }