Files

10 lines
200 B
Go
Raw Permalink Normal View History

package models
// Notification Channel Constants
const (
NotificationChannelSMS = "sms"
NotificationChannelEmail = "email"
NotificationChannelBoth = "both"
NotificationChannelNone = "none"
)