EchoTex_Payroll/HRM.BO/Configuration/MailNotificationProcessConfiguration.cs

14 lines
371 B
C#
Raw Permalink Normal View History

2024-10-14 10:01:49 +06:00
using System;
namespace HRM.BO
{
public class MailNotificationProcessConfiguration
{
public int TriggerInterval { get; set; } // in milisec
public DateTime TriggerTime { get; set; }
public string PayrollTypeForMailSchedular { get; set; }
public bool IsTest { get; set; }
public string ProjectName { get; set; }
}
}