using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WindowsPhone.Recipes.Push.Messasges
{
///
/// Push notification channel subscription status.
///
public enum SubscriptionStatus
{
/// The request is not applicable.
NotApplicable,
/// The subscription is active.
Active,
/// The subscription has expired.
Expired
}
}