29 lines
1.1 KiB
C#
29 lines
1.1 KiB
C#
using CPRNIMS.Infrastructure.Entities.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Entities.Account
|
|
{
|
|
[Table("ControllerAccess")]
|
|
public class ControllerAccess : CommonProperties
|
|
{
|
|
[Key]
|
|
public int ContAccId { get; set; }
|
|
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;
|
|
}
|
|
}
|