Files
SanchoToro/bdGrupoSanchoToro/db/menus.cs
2026-01-23 12:45:41 +01:00

28 lines
565 B
C#

using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdGrupoSanchoToro.db;
[AddINotifyPropertyChangedInterface]
public partial class menus
{
public int idMenus { get; set; }
public string? Texto { get; set; }
public string? Ayuda { get; set; }
public string? Accion { get; set; }
public int? Orden { get; set; }
public int? idMenuPadre { get; set; }
public bool MostrarEnPanel { get; set; }
public int? idPermiso { get; set; }
public virtual permisos? idPermisoNavigation { get; set; }
}