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

21 lines
568 B
C#

using CPRNIMS.Infrastructure.Entities.Common;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Entities.Account
{
public class AuthorizeRoles : CommonProperties
{
[Key]
public int AuthorizeRoleId { get; set; }
public string? RoleId { get; set; }
public string? Name { get; set; }
public string? Controller { get; set; }
public bool IsActive { get; set; }
}
}