20 lines
500 B
C#
20 lines
500 B
C#
namespace DigitalData.MessagingService.Domain.Common;
|
|
|
|
/// <summary>
|
|
/// Domain-wide constants
|
|
/// </summary>
|
|
public static class DomainConstants
|
|
{
|
|
/// <summary>
|
|
/// Email processing constants
|
|
/// </summary>
|
|
public static class Email
|
|
{
|
|
/// <summary>
|
|
/// Maximum number of retry attempts for failed email sending
|
|
/// After this limit, email will be moved to Dead Letter Queue (DLQ)
|
|
/// </summary>
|
|
public const int MaxRetryCount = 3;
|
|
}
|
|
}
|