Initial commit

This commit is contained in:
2026-04-23 21:38:24 -04:00
commit 63e12a9636
1762 changed files with 1672620 additions and 0 deletions
@@ -0,0 +1,21 @@
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
}