Primera versión estable compatible con linux de WSAsegasa
This commit is contained in:
21
bdAsegasa/db/informescontables.cs
Normal file
21
bdAsegasa/db/informescontables.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user