16 lines
328 B
C#
16 lines
328 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MSAdminUsuarios.Context
|
|
{
|
|
public partial class PERFIL
|
|
{
|
|
|
|
public int NU_PK_PFL { get; set; }
|
|
public string? TX_PERFIL_PFL { get; set; }
|
|
public int? BL_ESTADO_PFL { get; set; } = 1;
|
|
public int? NU_ROL_PFL { get; set; }
|
|
|
|
}
|
|
}
|