14 lines
291 B
C#
14 lines
291 B
C#
using System.Security.Principal;
|
|
|
|
namespace decePubClient.Models
|
|
{
|
|
public interface CustomIPrincipal : IPrincipal
|
|
{
|
|
string UserId { get; set; }
|
|
string UserName { get; set; }
|
|
string DisplayName { get; set; }
|
|
string PictureUrl { get; set; }
|
|
string ProfileUrl { get; set; }
|
|
}
|
|
}
|