22 lines
489 B
C#
22 lines
489 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class regularizacion
|
|
{
|
|
public int idRegularizacion { get; set; }
|
|
|
|
public int? idPolizaAgrario { get; set; }
|
|
|
|
public float? Importe { get; set; }
|
|
|
|
public DateOnly? FechaRegularizacion { get; set; }
|
|
|
|
public DateOnly? FechaPago { get; set; }
|
|
|
|
public virtual polizasagrario? idPolizaAgrarioNavigation { get; set; }
|
|
}
|