22 lines
519 B
C#
22 lines
519 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class entidadesrelacionadas
|
|
{
|
|
public int idEntidadRelacionada { get; set; }
|
|
|
|
public int idEntidadPadre { get; set; }
|
|
|
|
public int? idEntidadHijo { get; set; }
|
|
|
|
public string? Observaciones { get; set; }
|
|
|
|
public virtual entidades? idEntidadHijoNavigation { get; set; }
|
|
|
|
public virtual entidades idEntidadPadreNavigation { get; set; } = null!;
|
|
}
|