17 lines
445 B
C#
17 lines
445 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;
|
|
public string? TX_UUID_USUMS { get; set; }
|
|
public string? TX_UUID_PFL { get; set; }
|
|
|
|
}
|
|
}
|