Files
Antifraude.Net/Antifraude.Net/bdAntifraude/db/AUTORIZACIONESGRUPOS.cs
2025-10-24 08:46:31 +02:00

30 lines
685 B
C#

using System;
using System.Collections.Generic;
namespace bdAntifraude.db;
public partial class AUTORIZACIONESGRUPOS
{
public int IDAUTORIZACIONGRUPO { get; set; }
public int? IDGRUPO { get; set; }
public int? IDPERMISO { get; set; }
public bool PERMITIRCONSULTAS { get; set; }
public bool PERMITIRNUEVOS { get; set; }
public bool PERMITIRMODIFICACIONES { get; set; }
public bool PERMITIRELIMINACIONES { get; set; }
public bool PERMITIRIMPRESIONES { get; set; }
public bool OTROSPERMISOS { get; set; }
public virtual GRUPOSUSUARIOS? IDGRUPONavigation { get; set; }
public virtual PERMISOS? IDPERMISONavigation { get; set; }
}