Files
myfriendsaround/main/Libs/PushRecipe_WP7_SL/Source/WindowsPhone.Recipes.Push.Client/Views/LoginEventArgs.cs
T

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;
}
}
}