using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace gehGassi.LocalNotifications { /// /// Konstanten für die Notifications /// public static class Constants { private static readonly string _defaulChannelName = "gassiNotifications"; /// /// Sound On & Vibration On ( default ) /// public static string DEFAULT_CHANNEL_ID = _defaulChannelName + ".General"; /// /// Kein sound & Keine Vibration /// public static string CHANNEL_ID_WITHOUT_SOUND_AND_VIBRATION = _defaulChannelName + ".NoSoundNoVibrationV2"; /// /// Kein Sound /// public static string CHANNEL_ID_WITHOUT_SOUND = _defaulChannelName + ".NoSoundV2"; /// /// Keine Vibration /// public static string CHANNEL_ID_WITHOUT_VIBRATION = _defaulChannelName + ".NoVibrationV2"; public static string NOTIFICATION = "notification"; public static string NOTIFICATION_ID = "notification_id"; public static string SCHEDULED_NOTIFICATIONS = "scheduled_notifications"; public static string NOTIFICATION_REQUEST = "notification_request"; public static string REPEAT = "repeat"; public static string PAYLOAD = "payload"; public static string LOCAL_NOTIFICATIONS = "local_notifications"; public static int NOTIFICATION_ID_NOT_FOUND = -1; } }