LoginEventArgs.cs 370 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace WindowsPhone.Recipes.Push.Client.Views
  6. {
  7. public class LoginEventArgs : EventArgs
  8. {
  9. public Exception Exception { get; private set; }
  10. public LoginEventArgs(Exception exception = null)
  11. {
  12. Exception = exception;
  13. }
  14. }
  15. }