18 lines
452 B
C#
18 lines
452 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace bdHerramientaCACOA.db;
|
|
|
|
public partial class documentacion
|
|
{
|
|
public int iddocumentacion { get; set; }
|
|
|
|
public string? Descripcion { get; set; }
|
|
|
|
public double? CoeficienteHoras { get; set; }
|
|
|
|
public bool Checkeable { get; set; }
|
|
|
|
public virtual ICollection<tipoproyecto_documentacion> tipoproyecto_documentacion { get; set; } = new List<tipoproyecto_documentacion>();
|
|
}
|