sozsoft-platform/api/modules/Sozsoft.MailQueue/Domain/MailGeneration/Models/MailTemplateTableModel.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

15 lines
561 B
C#

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; }
}