Initial Comit

This commit is contained in:
Stefan Hutter
2024-05-31 13:32:10 +02:00
commit 50e9e06829
522 changed files with 4979364 additions and 0 deletions

37
Model/clsDocData.cs Normal file
View File

@@ -0,0 +1,37 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Permissions;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class clsDocData
{
public string DokumenttypNr { get; set; }
public string VorlageNr { get; set; }
public string DokumentDatum { get; set; }
public string PartnerNr { get; set; }
public string Ersteller { get; set; }
public string Verantwortllich { get; set; }
public string Unterschrift_Links { get; set; }
public string Unterschrift_Rechts { get; set; }
public string As_Faksimile { get; set; }
public string Lock { get; set; }
public string Direct_to_Archive { get; set; }
public string Result_as_PDF { get; set; }
public string UseEDOKA_Values { get; set; }
public List<clsDocValue> DocValues {get;set;}
}
public class clsDocValue
{
public string TMBeginn { get; set; }
public string TMEnd { get; set; }
public string FieldName { get; set; }
public string Value { get; set; }
}
}