decePubClient/Models/CustomIPrincipal.cs
Eugenio Chiodo ba4a4b14c8 Saving
2022-02-14 01:51:37 +01:00

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