erp-platform/api/modules/Erp.MailQueue/Domain/MailGeneration/Models/MailTemplateTableModel.cs
2025-11-11 22:49:52 +03:00

15 lines
557 B
C#

namespace Erp.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; }
}