using System;
using UnityEngine;
namespace Assets.SimpleAndroidNotifications
{
public class NotificationParams
{
///
/// Use random id for each new notification.
///
public int Id;
public TimeSpan Delay;
public string Title;
public string Message;
public string Ticker;
public bool Sound = true;
public bool Vibrate = true;
public bool Light = true;
public NotificationIcon SmallIcon;
public Color SmallIconColor;
///
/// Use "" for simple notification. Use "app_icon" to use the app icon. Use custom value but first place image to "simple-android-notifications.aar/res/". To modify "aar" file just rename it to "zip" and back.
///
public string LargeIcon;
}
}