20 lines
475 B
C#
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>();
|
|
}
|