* ArcGIS Portal provider added Originally attempted to inherit from ArcGIS Online provider, but a fair amount of refactoring is required to allow inheritance for everything that needs changing. To be revisited when time allows.
10 lines
241 B
C#
10 lines
241 B
C#
namespace Owin.Security.Providers.ArcGISPortal.Provider
|
|
{
|
|
public class ArcGISPortalUser
|
|
{
|
|
public string Username { get; set; }
|
|
public string FullName { get; set; }
|
|
public string Email { get; set; }
|
|
}
|
|
}
|