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.

61 lines
1.7 KiB

using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Security.Permissions;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class clsDocData
{
public string Dokumentid { get; set; }
public string DokumenttypNr { get; set; }
public string VorlageNr { get; set; }
public string DokumentDatum { get; set; }
public string Termin { get; set; }
public string Bezeichnung { get; set; }
public string PartnerNr { get; set; }
public string Ersteller { get; set; }
public string Verantwortlich { get; set; }
public string Zustaendig { get; set; }
public string Team { get; set; }
public string Unterschrift_Links { get; set; }
public string Unterschrift_Rechts { get; set; }
public string Status { 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 bool Barcode { get; set; }
public bool PrintLogo { get; set; } = false;
public string UseEDOKA_Values { get; set; }
public List<clsDocValue> DocValues {get;set;}
public List<clsDocMacro> DocMacros { get; set; }
public DataTable dokumentwerte { 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; }
}
public class clsDocMacro
{
public string Name { get; set; }
public string BookMark { get;set; }
}
}