Skip to content

Instantly share code, notes, and snippets.

@richardprice
Created August 23, 2013 16:55
Show Gist options
  • Save richardprice/6321543 to your computer and use it in GitHub Desktop.
Save richardprice/6321543 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using SimpleAuthentication.Core;
namespace SimpleAuthAutofacExample.Models
{
public class AuthenticateCallbackViewModel
{
public IAuthenticatedClient AuthenticatedClient { get; set; }
public Exception Exception { get; set; }
public string ReturnUrl { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment