You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
3.5 KiB
94 lines
3.5 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security.Permissions;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model
|
|
{
|
|
public class DocCreate
|
|
{
|
|
public string Result_Versandstrasse { get; set; }
|
|
public string Versand_Direkt { get; set; } = "";
|
|
public string Versand_Option { get; set; } = "";
|
|
public string GAS_Adresse { get; set; } = "";
|
|
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 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; }
|
|
public string TGNrVerantwortlich { get; set; }
|
|
public string TGNrUnterschriftLinks { get; set; }
|
|
public string TGNrUnterschriftRechts { get; set; }
|
|
public string UnterschriftLinksGeprueft { get; set; }
|
|
public string UnterschriftRechtsGeprueft { 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 string PDFDoc { get; set; }
|
|
public string DokumentID { get; set; } = "";
|
|
}
|
|
|
|
public class APIDokumentResult
|
|
{
|
|
public string dokumentid { get; set; }
|
|
public string dokument { get; set; }
|
|
}
|
|
|
|
}
|