sozsoft-platform/api/modules/Sozsoft.MailQueue/Domain/MailGeneration/Models/MailTemplateTableModel.cs

16 lines
561 B
C#
Raw Permalink Normal View History

2026-02-24 20:44:16 +00:00
namespace Sozsoft.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; }
}