| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.Linq; |
| | | 4 | | using System.Threading.Tasks; |
| | | 5 | | |
| | | 6 | | namespace SVETA.Api.Data.DTO.Email |
| | | 7 | | { |
| | | 8 | | public class EmailPatternRequestDTO |
| | | 9 | | { |
| | 0 | 10 | | public string TemplateText { get; set; } |
| | 0 | 11 | | public int TemplateId { get; set; } |
| | 0 | 12 | | public string Topic { get; set; } |
| | 0 | 13 | | public List<EmailParameters> Emails { get; set; } |
| | | 14 | | } |
| | | 15 | | public class EmailParameters |
| | | 16 | | { |
| | | 17 | | public Dictionary<string, string> Parameters { get; set; } = new Dictionary<string, string>(); |
| | | 18 | | public string ToClientAddress { get; set; } |
| | | 19 | | public int ToClientId { get; set; } |
| | | 20 | | } |
| | | 21 | | } |