Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
| 12345678910 |
- namespace Diligent.WebAPI.Data.Entities
- {
- public class WebhookSubscription : Base
- {
- public string WebhookURL { get; set; }
- public bool IsActive { get; set; }
- public long WebhookDefinitionId { get; set; }
- public virtual WebhookDefinition WebhookDefinition { get; set; }
- }
- }
|