Apigateway/Microservicios/MsUsuarios/Context/PERFIL.cs

15 lines
283 B
C#
Raw Normal View History

2023-02-02 10:50:02 -05:00
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;
}
}