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.

124 lines
3.9 KiB

using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Security.Permissions;
using System.Security.Policy;
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 postzustellung { 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 Zustaendig_Kube { 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 Form_ohne_Unterschrift { get; set; }
public string Lock { get; set; }
public string Direct_to_Archive { get; set; }
public string Result_as_PDF { get; set; }
public bool Kopfzeile_generieren { get; set; } = false;
public string barcode_zusatz { get; set; } = "";
public int barcode_top { get; set; } = 0;
public int barcode_left { get; set; } = 0;
public int barcode_width { get; set; }=0;
public int barcode_height { get; set; } = 0;
public int barcode_horizontal { get; set; } = 0;
public string barcode_font { get; set; } = "Bar 25i c HR";
public int barcode_fontsize { get; set; } = 26;
public string barcode_textposition { get; set; }
public string Zusatz_Font { get; set; } = "Arial";
public int Zusatz_FontSize { get; set; } = 8;
public string barcode_type { get; set; } = "";
public string barcode_content { get; set; } = "";
public string barcode_text { get; set; } = "";
public string barcode_formatn { get; set; } = "";
public string barcode_kantenlaenge { get; set; }
public string zustelladresse { get; set; } = "";
public string anrede { get; set; } = "";
public int toapprove { get; set; } = 0;
public int approved { get; set; } = 0;
public int approval1 { get; set; } = 0;
public int approval2 { get; set; } = 0;
public bool Barcode { get; set; }
public bool PrintLogo { get; set; } = false;
public bool Erstellung_in_Office { get; set; } = false;
public string CompatibilityMode { get; set; } = "";
public bool FillOffice { get; set; } = false;
public string UseEDOKA_Values { get; set; }
public bool signiert { get; set; } = false;
public bool remove_signature { get; set; } = false;
public bool sign { get; set; } = false;
public List<clsav_authl_ref> avq_authl_ref { get; set; }
public string prefix { get; set; } = "";
public List<clsDocValue> DocValues {get;set;}
public List<clsDocMacro> DocMacros { get; set; }
public List<clsNameVOrnameTM> VornameNameTextmarken { get; set; }
public DataTable dokumentwerte { get; set; }
}
public class clsav_authl_ref
{
public string auth_ref { get; set; }
}
public class clsNameVOrnameTM
{
public string TM { get; set; }
public string FNKT { 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 int used { get; set; } = 1;
}
public class clsDocMacro
{
public string Name { get; set; }
public string BookMark { get;set; }
}
}