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

16 lines
317 B
C#

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!;
}