Files
FA_WEB/SytelineSaAppEfDataModel/Dtos/VatCodeAssociationDto.cs
2025-08-22 07:01:13 +02:00

66 lines
3.4 KiB
C#

namespace SytelineSaAppEfDataModel.Dtos;
public class VatCodeAssociationDto
{
public string VATRegisterType { get; set; }
public string EndUserType { get; set; }
public string Category { get; set; }
public string ProdCode { get; set; }
public string TaxCode { get; set; }
public string VATRegisterCode { get; set; }
public bool InWorkflow { get; set; }
public bool NoteExistsFlag { get; set; }
public DateTime RecordDate { get; set; }
public Guid RowPointer { get; set; }
public string CreatedBy { get; set; }
public string UpdatedBy { get; set; }
public DateTime CreateDate { get; set; }
public string Uf_ZPL_CodesCgsAcct { get; set; }
public string Uf_ZPL_CodesCgsAcctUnit1 { get; set; }
public string Uf_ZPL_CodesCgsAcctUnit2 { get; set; }
public string Uf_ZPL_CodesCgsAcctUnit3 { get; set; }
public string Uf_ZPL_CodesCgsAcctUnit4 { get; set; }
public string Uf_ZPL_CodesCgsDescription { get; set; }
public string Uf_ZPL_CodesCgsFovhdAcct { get; set; }
public string Uf_ZPL_CodesCgsFovhdAcctUnit1 { get; set; }
public string Uf_ZPL_CodesCgsFovhdAcctUnit2 { get; set; }
public string Uf_ZPL_CodesCgsFovhdAcctUnit3 { get; set; }
public string Uf_ZPL_CodesCgsFovhdAcctUnit4 { get; set; }
public string Uf_ZPL_CodesCgsFovhdDescription { get; set; }
public string Uf_ZPL_CodesCgsLbrAcct { get; set; }
public string Uf_ZPL_CodesCgsLbrAcctUnit1 { get; set; }
public string Uf_ZPL_CodesCgsLbrAcctUnit2 { get; set; }
public string Uf_ZPL_CodesCgsLbrAcctUnit3 { get; set; }
public string Uf_ZPL_CodesCgsLbrAcctUnit4 { get; set; }
public string Uf_ZPL_CodesCgsLbrDescription { get; set; }
public string Uf_ZPL_CodesCgsVovhdAcct { get; set; }
public string Uf_ZPL_CodesCgsVovhdAcctUnit1 { get; set; }
public string Uf_ZPL_CodesCgsVovhdAcctUnit2 { get; set; }
public string Uf_ZPL_CodesCgsVovhdAcctUnit3 { get; set; }
public string Uf_ZPL_CodesCgsVovhdAcctUnit4 { get; set; }
public string Uf_ZPL_CodesCgsVovhdDescription { get; set; }
public string Uf_ZPL_CodesCOGSVarsAcct { get; set; }
public string Uf_ZPL_CodesCOGSVarsAcctUnit1 { get; set; }
public string Uf_ZPL_CodesCOGSVarsAcctUnit2 { get; set; }
public string Uf_ZPL_CodesCOGSVarsAcctUnit3 { get; set; }
public string Uf_ZPL_CodesCOGSVarsAcctUnit4 { get; set; }
public string Uf_ZPL_CodesCOGVarsDescription { get; set; }
public string Uf_ZPL_CodesOutAcct { get; set; }
public string Uf_ZPL_CodesOutAcctUnit1 { get; set; }
public string Uf_ZPL_CodesOutAcctUnit2 { get; set; }
public string Uf_ZPL_CodesOutAcctUnit3 { get; set; }
public string Uf_ZPL_CodesOutAcctUnit4 { get; set; }
public string Uf_ZPL_CodesOutDescription { get; set; }
public string Uf_ZPL_CodesSaleDsAcct { get; set; }
public string Uf_ZPL_CodesSaleDsAcctUnit1 { get; set; }
public string Uf_ZPL_CodesSaleDsAcctUnit2 { get; set; }
public string Uf_ZPL_CodesSaleDsAcctUnit3 { get; set; }
public string Uf_ZPL_CodesSaleDsAcctUnit4 { get; set; }
public string Uf_ZPL_CodesSaleDsDescription { get; set; }
public string Uf_ZPL_CodesSalesAcct { get; set; }
public string Uf_ZPL_CodesSalesAcctUnit1 { get; set; }
public string Uf_ZPL_CodesSalesAcctUnit2 { get; set; }
public string Uf_ZPL_CodesSalesAcctUnit3 { get; set; }
public string Uf_ZPL_CodesSalesAcctUnit4 { get; set; }
public string Uf_ZPL_CodesSalesDescription { get; set; }
}