Files
Antifraude.Net/Antifraude.Net/bdAntifraudeMYSQL/db/GRUPOSENUMERACIONES.cs
2026-09-21 12:52:08 +02:00

20 lines
475 B
C#

using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdAntifraudeMYSQL.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>();
}