feat(sms): NotificationType.Sms + recipient phone + SmsConfiguration + repo iface (S1)

This commit is contained in:
Joseph Doherty
2026-06-19 09:42:27 -04:00
parent 07dae35533
commit c5378f8723
5 changed files with 125 additions and 6 deletions
@@ -1,9 +1,10 @@
namespace ZB.MOM.WW.ScadaBridge.Commons.Types.Enums;
/// <summary>
/// Delivery channel for a notification. Currently only email is supported.
/// Delivery channel for a notification. Email and SMS are supported.
/// </summary>
public enum NotificationType
{
Email
Email,
Sms
}