namespace Bit.App.Utilities { public static class PushNotificationKey { /// /// Type /// public const string Type = "type"; /// /// Error /// public const string Error = "error"; /// /// Domain Name /// public const string DomainName = "CrossPushNotification"; /// /// Title /// public const string Title = "title"; /// /// Text /// public const string Text = "text"; /// /// Subtitle /// public const string Subtitle = "subtitle"; /// /// Message /// public const string Message = "message"; /// /// Silent /// public const string Silent = "silent"; /// /// Alert /// public const string Alert = "alert"; /// /// Data /// public const string Data = "data"; /// /// Token /// public const string Token = "token"; /// /// App Version /// public const string AppVersion = "appVersion"; /// /// IntentFromGcmMessage /// public const string IntentFromGcmMessage = "com.google.android.c2dm.intent.RECEIVE"; /// /// BackOffMilliseconds /// public const string BackOffMilliseconds = "backoff_ms"; /// /// ErrorServiceNotAvailable /// public const string ErrorServiceNotAvailable = "SERVICE_NOT_AVAILABLE"; /// /// Tag /// public const string Tag = "tag"; /// /// Id /// public const string Id = "id"; /// /// RegistrationComplete /// public const string RegistrationComplete = "registrationComplete"; } }