36 lines
868 B
C#
36 lines
868 B
C#
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>();
|
|
}
|