using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model { public class serienbrief { public int serienbriefnr { get; set; } = 0; public string bezeichnung { get; set; } = ""; public int verantwortlich { get; set; } = 0; public int postzustellung { get; set; } = 0; public DateTime dokumentdatum { get; set; } = DateTime.Now; public int zustaendig { get; set; } = 0; public int unterschriftlinks { get; set; } = 0; public int unterschriftrechts { get; set; } = 0; public string ohne_unterschrift { get; set; } = "False"; public string faksimile_unterschrfit { get; set; } = "False"; public int team { get; set; } = 0; public DateTime archivdatum { get; set; } = DateTime.Now; public DateTime termin { get; set; } = DateTime.Now; public string bemerkung { get; set; } = ""; public DateTime erstellt_am { get; set; } = DateTime.Now; public DateTime mutiert_am { get; set; } = DateTime.Now; public int mutierer { get; set; } = 0; public bool aktiv { get; set; } = true; public int status { get; set; } = 0; public int dokumenttypnr { get; set; } = 0; public int windowwidth { get; set; } = 0; public int windowheight { get; set; } = 0; public int treewidth { get; set; } = 0; public int fehlerhaft { get; set; } = 0; public int inBearbeitung { get; set; } = 0; public int erstellt { get; set; } = 0; public int gedruckt { get; set; } = 0; public int bestaetigt { get; set; } = 0; public int ausgeloest { get; set; } = 0; public int bldossier { get; set; } = 0; public int vertrag { get; set; } = 0; public int ppfaktura { get; set; } = 0; public int officevorlagenr { get; set; } = 0; public string filename { get; set; } public DataSet dsempfaenger { get; set; } public List DocValues { get; set; } public string VorlageBase64 { get; set; } = ""; public string img_unterschriftlinks { get; set; } = ""; public string img_unterschrfitrechts { get; set; } = ""; public string img_faktura { get; set; } = ""; public int barcode_height { get; set; } = 0; public int barcode_width { get; set; } = 0; public int barcode_top { get; set; } = 0; public int barcode_left { get; set; } = 0; public int barcode_horizontal { get; set; } = 0; public string barcode_font { get; set; } = ""; public string barcode_fontsize { get; set; } = ""; public string barcode_textposition { get; set; } = ""; public string barcode_zusatz { get; set; } public string barcode_type { get; set; } = ""; public string barcode_content { get; set; } = ""; public string barcode_text { get; set; } = ""; public int toapproval { get; set; } = 0; public int approved { get; set; } = 0; public int approval1 { get; set; } = 0; public int approval2 { get; set; } = 0; public int faksimile { get; set; } = 0; public int ohneunterschrift { get; set; } = 0; } }