Apigateway/Microservicios/MsUsuarios/Context/PERFILPORUSUARIO.cs
2023-02-02 10:50:06 -05:00

15 lines
345 B
C#

using System;
using System.Collections.Generic;
namespace MSAdminUsuarios.Context
{
public partial class PERFILPORUSUARIO
{
public int NU_PK_PFLXUSU { get; set; }
public string? TX_FKDOC_USUMS { get; set; }
public int? NU_FK_PFL { get; set; }
public int? BL_ESTADO_PFLXUSU { get; set; } = 1;
}
}