21 lines
511 B
C#
21 lines
511 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Security
|
|
{
|
|
public class UserClaimsResponse
|
|
{
|
|
public string? UserId { get; set; }
|
|
public List<UserRoleData>? UserRoles { get; set; }
|
|
public List<UserClaimData>? OtherClaims { get; set; }
|
|
}
|
|
public class UserRoleData
|
|
{
|
|
public string? RoleId { get; set; }
|
|
public string? RoleName { get; set; }
|
|
}
|
|
}
|