您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

WebhookMappingProfile.cs 437B

12345678910111213141516
  1. namespace Diligent.WebAPI.Business.MappingProfiles
  2. {
  3. public class WebhookMappingProfile : Profile
  4. {
  5. public WebhookMappingProfile()
  6. {
  7. #region DTO to Model
  8. CreateMap<WebhookSubscriptionCreateDto, WebhookSubscription>();
  9. #endregion
  10. #region Model to DTO
  11. CreateMap<WebhookDefinition, WebhookDefinitionViewDto>();
  12. #endregion
  13. }
  14. }
  15. }