23 lines
724 B
C#
23 lines
724 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Security
|
|
{
|
|
public class UserClaimData
|
|
{
|
|
public string? issuer { get; set; }
|
|
public string? originalIssuer { get; set; }
|
|
public Dictionary<string, string> properties { get; set; } = new Dictionary<string, string>();
|
|
public string? subject { get; set; }
|
|
public string? type { get; set; }
|
|
public string? value { get; set; }
|
|
public string? valueType { get; set; }
|
|
public string? company { get; set; }
|
|
public string? Department { get; set; }
|
|
public string? FullName { get; set; }
|
|
}
|
|
}
|