19 lines
646 B
C#
19 lines
646 B
C#
namespace Erp.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; }
|
|
|
|
}
|
|
|