Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

WebhookSubscriptionCreateDto.cs 265B

12345678910
  1. namespace Diligent.WebAPI.Contracts.DTOs.WebhookSubscription
  2. {
  3. public class WebhookSubscriptionCreateDto
  4. {
  5. [Required]
  6. public string WebhookUri { get; set; }
  7. [Required]
  8. public long WebhookDefinitionId { get; set; }
  9. }
  10. }