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

19 lines
650 B
C#

namespace Sozsoft.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; }
}