23 lines
584 B
C#
23 lines
584 B
C#
namespace PowderCoating.Core.Enums;
|
|
|
|
public enum NotificationChannel { Email = 0, Sms = 1 }
|
|
public enum NotificationStatus { Sent = 0, Failed = 1, Skipped = 2 }
|
|
public enum NotificationType
|
|
{
|
|
QuoteSent = 0,
|
|
QuoteApproved = 1,
|
|
JobStatusChanged = 2,
|
|
JobReadyForPickup = 3,
|
|
JobCompleted = 4,
|
|
SmsConsentConfirmation = 5,
|
|
InvoiceSent = 6,
|
|
PaymentReceived = 7,
|
|
QuoteDeclinedByCustomer = 8,
|
|
PaymentReminder = 9,
|
|
SubscriptionExpiryReminder = 10,
|
|
SubscriptionExpired = 11,
|
|
SmsInboundStop = 12,
|
|
SmsInboundHelp = 13,
|
|
AdminEmail = 14
|
|
}
|