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

33 lines
1.1 KiB
C#

using CPRNIMS.Infrastructure.Entities.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.ViewModel.Account
{
public class UserRightsVM : CommonProperties
{
public long UserAccessId { get; set; }
public string? UserId { get; set; }
public byte AccessTypeId { get; set; }
public int ContAccId { get; set; }
public string? AccessType { get; set; }
public string? Action { get; set; }
public string? Controller { get; set; }
public int DepartmentId { get; set; }
public string? Department { get; set; }
public bool IsActive { get; set; }
public bool IsNotExist { 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 string? AdminUserId { get; set; }
public UserRightsList? UserRightsList { get; set; }
}
}