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

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