using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WindowsPhone.Recipes.Push.Messasges
{
///
/// Represents the priorities of which the Push Notification Service sends the message.
///
public enum MessageSendPriority
{
/// The message should be delivered by the Push Notification Service immediately.
High = 0,
/// The message should be delivered by the Push Notification Service within 450 seconds.
Normal = 1,
/// The message should be delivered by the Push Notification Service within 900 seconds.
Low = 2
}
}