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

20 lines
646 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 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; }
}
2025-11-11 19:49:52 +00:00