Apigateway/Microservicios/MsUsuarios/Context/PERFILPORUSUARIO.cs

17 lines
460 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 PERFILPORUSUARIO
{
public int NU_PK_PFLXUSU { get; set; }
public string? TX_FKDOC_USUMS { get; set; }
2023-02-02 10:50:02 -05:00
public int? NU_FK_PFL { get; set; }
public int? BL_ESTADO_PFLXUSU { get; set; } = 1;
2023-12-06 14:11:53 -05:00
public string? TX_UUID_USUMS { get; set; }
2023-12-22 15:55:01 -05:00
public string? TX_UUID_PFL { get; set; }
2024-02-28 15:05:20 -05:00
// test
2023-02-02 10:50:02 -05:00
}
}