using System; using System.Collections.Generic; using PropertyChanged; namespace bdGrupoSanchoToro.db; [AddINotifyPropertyChangedInterface] public partial class tablas { public int idTabla { get; set; } public string Codigo { get; set; } = null!; public string Descripcion { get; set; } = null!; }