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