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

12 lines
397 B
C#

namespace Sozsoft.MailQueue.MailGeneration.Models;
public class AttachmentModel
{
public string Index { get; set; }
public string DbAdi { get; set; } //MRP.mdb, CRM.mdb
public string RaporAdi { get; set; }
public string ExportDosyaTipi { get; set; } //PDF, TXT, XLS, ..
public Dictionary<string, string> Filtreler { get; set; }
public string MailEkAdi { get; set; }
}