updfate 20250919

This commit is contained in:
Stefan Hutter
2025-09-19 14:20:47 +02:00
parent 98dc8ed0cb
commit d81d620468
2488 changed files with 1833953 additions and 103283 deletions

View File

@@ -18,6 +18,52 @@ namespace Model
public string Result_FileType { get; set; }
public string ConfirmationMail { get; set; }
public string ConfirmationMailAddress { get; set; }
public string VorlagenTypID { get; set; }
public string Paket { get; set; }
public string Partnernr { get; set; }
public string PersonNr { get; set; }
public string TGNrErsteller { get; set; }
public string TGNrVerantwortlich { get; set; }
public string TGNrUnterschriftLinks { get; set; }
public string TGNrUnterschriftRechts { get; set; }
public string OhneUnterschrift { get; set; }
public string FaksimileUnterschrift { get; set; }
public string PrintLogo { get; set; }
public string Dokumentdatum { get; set; }
public string Bezeichnung { get; set; }
public List<attribute> APIValues { get; set; }
public List<textreplace> TextToReplace { get; set; }
}
public class attribute
{
public string Tag { get; set; }
public string Value { get; set; }
}
public class textreplace
{
public string TextToFind { get; set; }
public string TextToReplace { get; set; }
}
public class DokumentCreate
{
public string Versandstrasse { get; set; }
public string Versand_Direkt { get; set; } = "";
public string Versand_Verantwortlich { get; set; }
public string Versand_Option { get; set; } = "";
public string GAS_Adresse { get; set; } = "";
public string GAS_Couvert { get; set; } = "C5mini";
public string Result_OnDoc { get; set; }
public string Result_Sender { get; set; }
public string Result_FileType { get; set; }
public string ConfirmationMail { get; set; }
public string ConfirmationMailAddress { get; set; }
public List<APIDokument> Dokumente { get; set; }
}
public class APIDokument
{
public string VorlagenTypID { get; set; }
public string Partnernr { get; set; }
public string TGNrErsteller { get; set; }
@@ -30,11 +76,15 @@ namespace Model
public string Dokumentdatum { get; set; }
public string Bezeichnung { get; set; }
public List<attribute> APIValues { get; set; }
public List<textreplace> TextToReplace { get; set; }
public string PDFDoc { get; set; }
public string DokumentID { get; set; } = "";
}
public class attribute
public class APIDokumentResult
{
public string Tag { get; set; }
public string Value { get; set; }
public string dokumentid { get; set; }
public string dokument { get; set; }
}
}

View File

@@ -52,6 +52,8 @@ namespace Model
}
}

Binary file not shown.

Binary file not shown.

View File

@@ -97,6 +97,7 @@ namespace Model
public DataTable dokumentwerte { get; set; }
public List<attribute> APIValues { get; set; }
public List<textreplace> TextToReplace { get; set; }
}

Binary file not shown.

Binary file not shown.