30 lines
685 B
C#
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; }
|
|
}
|