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.
59 lines
1.7 KiB
59 lines
1.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model
|
|
{
|
|
public class Versandpaket
|
|
{
|
|
public string bezeichnung { get; set; }
|
|
public string PaketNr { get; set; }
|
|
public string Versandoption { get; set; }
|
|
public string Mitteilung { get; set; }
|
|
public string GAS { get; set; }
|
|
public string GASAdresse { get; set; }
|
|
public bool verified { get; set; } = false;
|
|
public int partnernr { get; set; } = 0;
|
|
public bool send_onbase_doc { get; set; }
|
|
public string handle { get; set; } = "";
|
|
|
|
public string finaldoc { get; set; } = "";
|
|
|
|
public List<Versanddokument> Dokument { get; set; }
|
|
|
|
}
|
|
|
|
public class Versanddokument
|
|
{
|
|
public string DokumentID { get; set; }
|
|
public string Bezeichnung { get; set; }
|
|
public string Partnernr { get; set; }
|
|
|
|
public string dokument { get; set; } = "";
|
|
|
|
public Versanddokument(string dokumentID, string bezeichnung, string partnernr)
|
|
{
|
|
DokumentID = dokumentID;
|
|
Bezeichnung = bezeichnung;
|
|
Partnernr = partnernr;
|
|
|
|
}
|
|
}
|
|
|
|
public class OnBase_Attributes
|
|
{
|
|
public string Dokumenttyp { get; set; } = "TECH Versandstrasse SendDoc";
|
|
public string BPNummer { get; set; } = "";
|
|
public string DocumentHandle { get; set; } = "";
|
|
public string DistributionOption { get; set; } = "";
|
|
public string GASCouvert { get; set; } = "";
|
|
public string Returnaddress { get; set; } = "";
|
|
public string O2ODochandle { get; set; } = "";
|
|
public string Status { get; set; } = "";
|
|
}
|
|
|
|
}
|
|
|