43 lines
1.6 KiB
C#
43 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace gehGassi.LocalNotifications
|
|
{
|
|
/// <summary>
|
|
/// Konstanten für die Notifications
|
|
/// </summary>
|
|
public static class Constants
|
|
{
|
|
private static readonly string _defaulChannelName = "gassiNotifications";
|
|
/// <summary>
|
|
/// Sound On & Vibration On ( default )
|
|
/// </summary>
|
|
public static string DEFAULT_CHANNEL_ID = _defaulChannelName + ".General";
|
|
/// <summary>
|
|
/// Kein sound & Keine Vibration
|
|
/// </summary>
|
|
public static string CHANNEL_ID_WITHOUT_SOUND_AND_VIBRATION = _defaulChannelName + ".NoSoundNoVibrationV2";
|
|
/// <summary>
|
|
/// Kein Sound
|
|
/// </summary>
|
|
public static string CHANNEL_ID_WITHOUT_SOUND = _defaulChannelName + ".NoSoundV2";
|
|
/// <summary>
|
|
/// Keine Vibration
|
|
/// </summary>
|
|
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;
|
|
}
|
|
}
|