14 lines
467 B
C#
14 lines
467 B
C#
namespace LiteCharms.Abstractions;
|
|
|
|
public static class Constants
|
|
{
|
|
public const int QueueBounds = 100000;
|
|
|
|
public const string LeadGeneratorSchedulerName = "leadgenerator";
|
|
public const string LeadGeneratorSchedulerInstanceId = "golden-dawn";
|
|
|
|
public const string EmailServiceBus = nameof(EmailServiceBus);
|
|
public const string GeneralServiceBus = nameof(GeneralServiceBus);
|
|
public const string SalesServiceBus = nameof(SalesServiceBus);
|
|
}
|