19 lines
552 B
C#
19 lines
552 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Dto.Account
|
|
{
|
|
public class UserClaimsDto
|
|
{
|
|
public string UserId { get; init; } = default!;
|
|
public string UserName { get; init; } = default!;
|
|
public string FullName { get; init; } = default!;
|
|
public string Company { get; init; } = default!;
|
|
public IReadOnlyList<string> Roles { get; init; } = [];
|
|
public int? DepartmentId { get; set; }
|
|
}
|
|
}
|