Initial Comit
This commit is contained in:
37
Model/clsDocData.cs
Normal file
37
Model/clsDocData.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user