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ů.
| 123456789101112 |
- namespace Diligent.WebAPI.Data.Entities
- {
- public class WebhookDefinition : Base
- {
- [Required]
- [MaxLength(100)]
- public string Name { get; set; } // example: insuranceCompany.Created
- [MaxLength(100)]
- public string DisplayName { get; set; }
- public string Description { get; set; }
- }
- }
|