24 lines
897 B
C#
24 lines
897 B
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 ControllerAccessVM : CommonProperties
|
|
{
|
|
public int ControllerAccessId { get; set; }
|
|
public string UserId { get; set; } = string.Empty;
|
|
public int AccessTypeId { get; set; }
|
|
public string Action { get; set; } = string.Empty;
|
|
public string Controller { get; set; } = string.Empty;
|
|
public string AccessTypeName { get; set; } = string.Empty;
|
|
public string ElementMenuName { get; set; } = string.Empty;
|
|
public string ToolTipName { get; set; } = string.Empty;
|
|
public string IconClassName { get; set; } = string.Empty;
|
|
public string IconSpanName { get; set; } = string.Empty;
|
|
}
|
|
}
|