NonInventPurchasingSystem/CPRNIMS.Infrastructure/Dto/Account/UserClaimsDto.cs
2026-06-18 16:51:31 +08:00

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