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

20 lines
474 B
C#

using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdGrupoSanchoToro.db;
[AddINotifyPropertyChangedInterface]
public partial class gruposenumeraciones
{
public int idGrupoEnumeracion { get; set; }
public string Grupo { get; set; } = null!;
public string? Descripcion { get; set; }
public bool Oculto { get; set; }
public virtual ICollection<enumeraciones> enumeraciones { get; set; } = new List<enumeraciones>();
}