Initial Commit ...
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
using xExceptions.Attributes;
|
||||
|
||||
namespace xPushService.Constants {
|
||||
/// <summary>
|
||||
/// Determines Push Notification Types
|
||||
/// </summary>
|
||||
public enum XPushType {
|
||||
/// System Type Notifications Relate Only to System
|
||||
System,
|
||||
|
||||
/// User Specific Types Of Push Notifications
|
||||
User
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Base Push Actions ...
|
||||
/// </summary>
|
||||
public enum XBasePushAction {
|
||||
[StringValue ("PushMessageAsync")]
|
||||
PushMessage,
|
||||
[StringValue ("UserMessageAsync")]
|
||||
UserMessage,
|
||||
[StringValue ("AdminMessageAsync")]
|
||||
AdminMessage,
|
||||
[StringValue("AuthorizedMessageAsync")]
|
||||
AuthorizedMessage,
|
||||
[StringValue("NotifyNewConnection")]
|
||||
NotifyNewConnection
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user