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ů.
| 123456789101112131415 |
- namespace Diligent.WebAPI.Contracts.Models
- {
- public class DiligEmail
- {
-
- public long Id { get; set; }
- public string To { get; set; }
- public string Subject { get; set; }
- public bool IsHtml { get; set; }
- public string Body { get; set; }
- public DateTime? DontSendBefore { get; set; }
- public DateTime? CreateTime { get; set; }
- public DateTime? SentTime { get; set; }
- }
- }
|