mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-28 23:01:53 +03:00
00f97e41d6
http://windowsteamblog.com/windows_phone/b/wpdev/archive/2011/01/14/windows-push-notification-server-side-helper-library.aspx http://create.msdn.com/en-us/education/catalog/article/pnhelp-wp7
22 lines
543 B
C#
22 lines
543 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using WindowsPhone.Recipes.Push.Server.Models;
|
|
|
|
namespace WindowsPhone.Recipes.Push.Server.Services
|
|
{
|
|
/// <summary>
|
|
/// Subscription event arguments.
|
|
/// </summary>
|
|
internal class SubscriptionEventArgs : EventArgs
|
|
{
|
|
public Subscription Subscription { get; private set; }
|
|
|
|
public SubscriptionEventArgs(Subscription subscription)
|
|
{
|
|
Subscription = subscription;
|
|
}
|
|
}
|
|
}
|