- 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; }
- }
- }
|