| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.Text; |
| | | 4 | | using System.ComponentModel.DataAnnotations.Schema; |
| | | 5 | | |
| | | 6 | | |
| | | 7 | | namespace WinSolutions.Sveta.Server.Data.DataModel.Entities |
| | | 8 | | { |
| | | 9 | | public class EmailGateHistory : ExternalRecord |
| | | 10 | | { |
| | 0 | 11 | | public int TemplateId { get; set; } |
| | 0 | 12 | | public string EmailAddress { get; set; } |
| | 0 | 13 | | public string Subject { get; set; } |
| | 0 | 14 | | public int StatusCode { get; set; } |
| | 0 | 15 | | public int ResponseStatus { get; set; } |
| | 0 | 16 | | public string ResponseText { get; set; } |
| | | 17 | | } |
| | | 18 | | } |