22 lines
553 B
C#
22 lines
553 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class informescontables
|
|
{
|
|
public int idInforme { get; set; }
|
|
|
|
public string? Descripcion { get; set; }
|
|
|
|
public int? idFichero { get; set; }
|
|
|
|
public string Codigo { get; set; } = null!;
|
|
|
|
public virtual ICollection<celdasinformescontables> celdasinformescontables { get; set; } = new List<celdasinformescontables>();
|
|
|
|
public virtual ficheros? idFicheroNavigation { get; set; }
|
|
}
|