update 20241107

This commit is contained in:
Stefan Hutter
2024-11-07 22:35:24 +01:00
parent 86be28ec33
commit 23a308ad73
65 changed files with 759 additions and 55 deletions

View File

@@ -47,6 +47,7 @@
<Compile Include="clsdocgendata.cs" />
<Compile Include="clsdok.cs" />
<Compile Include="clsSerienbrief.cs" />
<Compile Include="OnBaseDocUpload.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="VersandstrassePaket.cs" />
</ItemGroup>

40
Model/OnBaseDocUpload.cs Normal file
View File

@@ -0,0 +1,40 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class OnBaseDocUpload
{
public class OnBaseDokument
{
public string dokumentTyp { get; set; }
public string dokumentDatum { get; set; }
public string dateiTyp { get; set; }
public string bpNummer { get; set; }
public string personNummer { get; set; }
public string dokumentDatei { get; set; }
public List<attribute> attributes { get; set; }
}
public class attribute
{
public string fieldname { get; set; }
public string fieldvalue { get; set; }
}
public class OnBaseDokumentFileUpload
{
public string dokumentTyp { get; set; }
public string dokumentDatum { get; set; }
public string dateiTyp { get; set; }
public string bpNummer { get; set; }
public string personNummer { get; set; }
public List<attribute> attributes { get; set; }
}
}
}

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
360cbe71b183e2000d2a6e9a40a1eec981199b034a930103ec6ff55518a1d358
fc1d8bbc41fd2408ff9b201a7d09bc7e0158619a1c90238c2c2a10dc7b57732f

Binary file not shown.

Binary file not shown.