Files
SanchoToro/bdGrupoSanchoToro/db/aplicacionesasientos.cs
2026-01-26 13:12:47 +01:00

20 lines
425 B
C#

using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdGrupoSanchoToro.db;
[AddINotifyPropertyChangedInterface]
public partial class aplicacionesasientos
{
public int idAplicacionAsiento { get; set; }
public int? Tipo { get; set; }
public int? idAplicacion { get; set; }
public int? idAsiento { get; set; }
public virtual asientos? idAsientoNavigation { get; set; }
}