Apigateway/Microservicios/MsUsuarios/Context/PERMISO.cs

14 lines
318 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 PERMISO
{
public int NU_PK_PMS { get; set; }
public int? NU_FK_PFL { get; set; }
public int? NU_FK_MS { get; set; }
public int? BL_ESTADO_PMS { get; set; } = 1;
}
}