erp-platform/api/modules/Erp.MailQueue/Domain/MailGeneration/Models/MailTemplateTableModel.cs

16 lines
557 B
C#
Raw Normal View History

2025-11-11 19:49:52 +00:00
namespace Erp.MailQueue.MailGeneration.Models;
2025-05-06 06:45:49 +00:00
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; }
}
2025-11-11 19:49:52 +00:00