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