using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace gehGassi.LocalNotifications { /// /// Optionen für die IOS-Einstellungen /// public class IosOptions { /// /// Alarm anzeigen /// public bool PresentAlert { get; set; } = true; /// /// Sound abspielen /// public bool PlaySound { get; set; } = true; /// /// Sound der abgespielt werden soll /// public string Sound { get; set; } = string.Empty; /// /// Badge anzeigen /// public bool ShowBadge { get; set; } = true; /// /// iOS summiert die Badgenummern nicht, die Sie an die App senden /// public int? BadgeNumber { get; set; } = null; /// /// Vorderungrund-Alert verstecken /// public bool HideForegroundAlert { get; set; } } }