20 lines
501 B
C#
20 lines
501 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class detallesagrupacionrecibossepa
|
|
{
|
|
public int idDetallesAgrupacionRecibosSEPA { get; set; }
|
|
|
|
public int? idAgrupacionRecibosSepa { get; set; }
|
|
|
|
public int? idRecibo { get; set; }
|
|
|
|
public virtual agrupacionrecibossepa? idAgrupacionRecibosSepaNavigation { get; set; }
|
|
|
|
public virtual recibos? idReciboNavigation { get; set; }
|
|
}
|