erp-platform/api/modules/Kurs.MailQueue/Domain/MailGeneration/Models/MailTemplateTableColumnModel.cs

19 lines
646 B
C#
Raw Normal View History

2025-05-06 06:45:49 +00:00
namespace Kurs.MailQueue.MailGeneration.Models;
public class MailTemplateTableColumnModel
{
public int SiraNo { get; set; }
public string SutunAdi { get; set; }
public string SutunBaslik { get; set; }
public Dictionary<string, string> BaslikCss { get; set; }
public Dictionary<string, string> Css { get; set; }
public Dictionary<string, string> AltBilgiCss { get; set; }
public string VeriTipi { get; set; }
public string VeriFormati { get; set; }
public bool Gizlimi { get; set; }
public bool Korumalimi { get; set; }
public string AltToplam { get; set; }
public int Genislik { get; set; }
}