Files
2025-07-25 12:56:07 +02:00

28 lines
639 B
C#

using System;
using System.Collections.Generic;
namespace bdHerramientaCACOA.db;
public partial class ficheros
{
public int idFichero { get; set; }
public string? Descripcion { get; set; }
public DateTime? FechaCreacion { get; set; }
public int? idTipo { get; set; }
public string? Observaciones { get; set; }
public byte[]? Fichero { get; set; }
public string? NombreFichero { get; set; }
public string? Codigo { get; set; }
public virtual enumeraciones? idTipoNavigation { get; set; }
public virtual ICollection<simulaciones> simulaciones { get; set; } = new List<simulaciones>();
}