mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-22 09:01:43 +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
18 lines
387 B
C#
18 lines
387 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace WindowsPhone.Recipes.Push.Client.Views
|
|
{
|
|
public class LoginEventArgs : EventArgs
|
|
{
|
|
public Exception Exception { get; private set; }
|
|
|
|
public LoginEventArgs(Exception exception = null)
|
|
{
|
|
Exception = exception;
|
|
}
|
|
}
|
|
}
|