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

24 lines
567 B
C#

using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdAntifraudeMYSQL.db;
[AddINotifyPropertyChangedInterface]
public partial class OCUPACION
{
public int IDOCUPACION { get; set; }
public string? OCUPACION1 { get; set; }
public string? DESCRIPCION { get; set; }
public string? OCU_RES { get; set; }
public bool ACTIVO { get; set; }
public string? DESCRIPCION_ANEXO { get; set; }
public virtual ICollection<VIDA_ADMINISTRATIVA> VIDA_ADMINISTRATIVA { get; set; } = new List<VIDA_ADMINISTRATIVA>();
}