選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

IWebhookDefinitionService.cs 261B

12345678910
  1. namespace Diligent.WebAPI.Business.Services.Interfaces
  2. {
  3. public interface IWebhookDefinitionService
  4. {
  5. /// <summary>
  6. /// Get all webhook definitions
  7. /// </summary>
  8. Task<List<WebhookDefinitionViewDto>> GetAll();
  9. }
  10. }