26 lines
994 B
C#

using Android.App;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace gehGassi.LocalNotifications.Platforms
{
public class NotificationChannelRequest
{
public string Id { get; set; } = Constants.DEFAULT_CHANNEL_ID;
public string Name { get; set; } = "General";
public string Description { get; set; }
public NotificationImportance Importance { get; set; } = NotificationImportance.Default;
public NotificationChannelAction ChannelAction { get; set; } = NotificationChannelAction.None;
public bool PlaySound { get; set; } = true;
public string Sound { get; set; }
public bool EnableVibration { get; set; } = true;
public long[] VibrationPatern { get; set; }
public bool EnableLights { get; set; } = true;
public Android.Graphics.Color ColorLight { get; set; }
public bool ShowBadge { get; set; } = true;
}
}