Files
Antifraude.Net/Antifraude.Net/bdAntifraude/db/DOTACION.cs
2025-10-24 08:46:31 +02:00

20 lines
405 B
C#

using System;
using System.Collections.Generic;
namespace bdAntifraude.db;
public partial class DOTACION
{
public int IDDOTACION { get; set; }
public string? DOTACION1 { get; set; }
public string? DESCRIPCION { get; set; }
public bool ACTIVO { get; set; }
public int? PLAZO { get; set; }
public virtual ICollection<PUESTOS> PUESTOS { get; set; } = new List<PUESTOS>();
}