Update 2024-08-08

This commit is contained in:
Stefan Hutter
2024-08-08 15:35:55 +02:00
parent 77d5c661f7
commit 43c44e0aad
285 changed files with 430358 additions and 336569 deletions

View File

@@ -47,6 +47,7 @@
<Compile Include="clsdocgendata.cs" />
<Compile Include="clsdok.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="VersandstrassePaket.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

View File

@@ -0,0 +1,39 @@
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 Versanddokument(string dokumentID, string bezeichnung, string partnernr)
{
DokumentID = dokumentID;
Bezeichnung = bezeichnung;
Partnernr = partnernr;
}
}
}

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
549ed10f77a1c086a788bb795bf0b4c56e94a6e031521e15f1ee95239b97c005
57ab2ec78deebc61353d3ea8926b1991db41a4c8d288afce107b55baa70cb5fa

Binary file not shown.

Binary file not shown.