decePubClient/Models/CustomIPrincipal.cs

14 lines
291 B
C#
Raw Normal View History

2022-02-14 01:51:37 +01:00
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; }
}
}