Primera versión estable compatible con linux de WSAsegasa
This commit is contained in:
35
bdAsegasa/db/seriesfacturas.cs
Normal file
35
bdAsegasa/db/seriesfacturas.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdAsegasa.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class seriesfacturas
|
||||
{
|
||||
public int idSerieFactura { get; set; }
|
||||
|
||||
public string? Descripcion { get; set; }
|
||||
|
||||
public bool IVA { get; set; }
|
||||
|
||||
public DateOnly? FechaBaja { get; set; }
|
||||
|
||||
public string Serie { get; set; } = null!;
|
||||
|
||||
public int? AnnoActual { get; set; }
|
||||
|
||||
public int? TipoVerifactu { get; set; }
|
||||
|
||||
public int? idSerieRectificativa { get; set; }
|
||||
|
||||
public int? TranscendenciaTributaria { get; set; }
|
||||
|
||||
public int? CalificacionOperacionesOExencion { get; set; }
|
||||
|
||||
public int Clase { get; set; }
|
||||
|
||||
public string? ConceptoVerifactu { get; set; }
|
||||
|
||||
public virtual ICollection<liquidacionesagentes> liquidacionesagentes { get; set; } = new List<liquidacionesagentes>();
|
||||
}
|
||||
Reference in New Issue
Block a user