28 lines
849 B
C#
28 lines
849 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Entities.Account
|
|
{
|
|
[Table("UserRights")]
|
|
public class UserRights
|
|
{
|
|
[Key]
|
|
public int ContAccId { get; set; }
|
|
public long UserAccessId { get; set; }
|
|
public string? UserId { get; set; }
|
|
public int AccessTypeId { get; set; }
|
|
public string? AccessType { get; set; }
|
|
public string? Action { get; set; }
|
|
public string? Controller { get; set; }
|
|
public string? FullName { get; set; }
|
|
public string? Email { get; set; }
|
|
public string? PageName { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
}
|