Primera versión
This commit is contained in:
25
bdHerramientaCACOA/db/v_tipoproyecto_documentacion.cs
Normal file
25
bdHerramientaCACOA/db/v_tipoproyecto_documentacion.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace bdHerramientaCACOA.db;
|
||||
|
||||
public partial class v_tipoproyecto_documentacion
|
||||
{
|
||||
public int idtipoproyecto_documentacion { get; set; }
|
||||
|
||||
public int? idtipoproyecto { get; set; }
|
||||
|
||||
public string? tipoproyecto { get; set; }
|
||||
|
||||
public int? iddocumentacion { get; set; }
|
||||
|
||||
public string? documentacion { get; set; }
|
||||
|
||||
public bool? esMinima { get; set; }
|
||||
|
||||
public bool? esOpcional { get; set; }
|
||||
|
||||
public bool? esNecesario { get; set; }
|
||||
|
||||
public int orden { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user