public ApplicationPushNotificationSetting()
 {
     ApplicationName = "TicketDesk";
     IsEnabled = false;
     DeliveryIntervalMinutes = 2;
     AntiNoiseSettings = new AntiNoiseSetting();
     RetryAttempts = 5;
     RetryIntervalMinutes = 2;
     DeliveryProviderSettings = new List<PushNotificationDeliveryProviderSetting> { };
 }
Ejemplo n.º 2
0
 public ApplicationPushNotificationSetting()
 {
     ApplicationName          = "TicketDesk";
     IsEnabled                = false;
     DeliveryIntervalMinutes  = 2;
     AntiNoiseSettings        = new AntiNoiseSetting();
     RetryAttempts            = 5;
     RetryIntervalMinutes     = 2;
     DeliveryProviderSettings = new List <PushNotificationDeliveryProviderSetting> {
     };
 }
Ejemplo n.º 3
0
 public ApplicationPushNotificationSetting()
 {
     ApplicationName          = "TicketDesk";
     IsEnabled                = false;
     IsBackgroundQueueEnabled = true;
     DeliveryIntervalMinutes  = 2;
     AntiNoiseSettings        = new AntiNoiseSetting();
     RetryAttempts            = 5;
     RetryIntervalMinutes     = 2;
     // ReSharper disable once VirtualMemberCallInConstructor
     DeliveryProviderSettings = new List <PushNotificationDeliveryProviderSetting>();
     BroadcastSettings        = new BroadcastSetting();
 }