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.
43 lines
1.1 KiB
43 lines
1.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model
|
|
{
|
|
public class Versandpakete
|
|
{
|
|
public List<Versandpaket> paket { get; set; }
|
|
}
|
|
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 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;
|
|
|
|
}
|
|
}
|
|
}
|
|
|