33 lines
1.1 KiB
C#
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; }
|
|
}
|
|
}
|