14 lines
557 B
C#
14 lines
557 B
C#
namespace Kurs.MailQueue.MailGeneration.Models;
|
|
|
|
public class MailTemplateTableModel
|
|
{
|
|
public string Index { get; set; }
|
|
public string TabloAdi { get; set; }
|
|
public string DosyaTipi { get; set; }
|
|
public List<MailTemplateTableColumnModel> TabloSutunlari { get; set; }
|
|
public List<Dictionary<string, object>> TabloDegerleri { get; set; }
|
|
public Dictionary<string, string> Parametreler { get; set; }
|
|
public string MailEkAdi { get; set; }
|
|
public string Korumalimi { get; set; }
|
|
public string DosyaAciklama { get; set; }
|
|
}
|