NonInventPurchasingSystem/CPRNIMS.Infrastructure/Dto/Account/AccountDto.cs
2026-01-20 07:44:30 +08:00

34 lines
1.2 KiB
C#

using CPRNIMS.Infrastructure.Entities.Common;
using CPRNIMS.Infrastructure.ViewModel.Account;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Dto.Account
{
public class AccountDto : CommonProperties
{
public long UserAccessId { get; set; }
public string? UserId { get; set; }
public int ContAccId { get; set; }
public string? AccessType { get; set; }
public string? Action { get; set; }
public string? Controller { get; set; }
public string? AdminUserId { get; set; }
public bool IsNotExist { get; set; } = false;
public bool IsActive { get; set; }
public byte AccessTypeId { get; set; }
public int DepartmentId { get; set; }
public string? Department { get; set; }
public string? errMessage { get; set; }
public string? StatusResponse { get; set; }
public byte messCode { get; set; }
public string? FullName { get; set; }
public string? Email { get; set; }
public string? PageName { get; set; }
public UserRightsList? UserRightsList { get; set; }
}
}