26 lines
602 B
C#
26 lines
602 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace bdHerramientaCACOA.db;
|
|
|
|
public partial class tipoproyecto_documentacion
|
|
{
|
|
public int idtipoproyecto_documentacion { get; set; }
|
|
|
|
public int? idtipoproyecto { get; set; }
|
|
|
|
public int? iddocumentacion { get; set; }
|
|
|
|
public bool? esMinima { get; set; }
|
|
|
|
public bool? esOpcional { get; set; }
|
|
|
|
public bool? esNecesario { get; set; }
|
|
|
|
public int orden { get; set; }
|
|
|
|
public virtual documentacion? iddocumentacionNavigation { get; set; }
|
|
|
|
public virtual tipoproyectos? idtipoproyectoNavigation { get; set; }
|
|
}
|