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
20 lines
487 B
C#
20 lines
487 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>
|
|
/// Server info event arguments.
|
|
/// </summary>
|
|
internal class ServerInfoEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the server info.
|
|
/// </summary>
|
|
public ServerInfo ServerInfo { get; set; }
|
|
}
|
|
}
|