32 lines
751 B
C#
32 lines
751 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAntifraudeMYSQL.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
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; }
|
|
}
|