using xExceptions.Attributes;
namespace xPushService.Constants {
///
/// Determines Push Notification Types
///
public enum XPushType {
/// System Type Notifications Relate Only to System
[StringValue("system")]
System,
/// User Specific Types Of Push Notifications
[StringValue("user")]
User
}
///
/// Base Push Actions ...
///
public enum XBasePushAction {
[StringValue ("PushMessageAsync")]
PushMessage,
[StringValue ("UserMessageAsync")]
UserMessage,
[StringValue ("AdminMessageAsync")]
AdminMessage,
[StringValue("AuthorizedMessageAsync")]
AuthorizedMessage,
[StringValue("NotifyNewConnection")]
NotifyNewConnection
}
}