moved everything up a directory

This commit is contained in:
tidusjar 2016-02-26 14:31:28 +00:00
commit 9a78f790a6
76 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Nancy.Security;
namespace RequestPlex.Core
{
public class UserIdentity : IUserIdentity
{
public string UserName { get; set; }
public IEnumerable<string> Claims { get; set; }
}
}