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