14 lines
203 B
C#
14 lines
203 B
C#
using System;
|
|
|
|
namespace Unity.Notifications
|
|
{
|
|
[Flags]
|
|
internal enum iOSPresentationOption
|
|
{
|
|
Badge = 1 << 0,
|
|
Sound = 1 << 1,
|
|
Alert = 1 << 2,
|
|
All = ~0,
|
|
}
|
|
}
|