Update 20241028

This commit is contained in:
Stefan Hutter
2024-10-28 20:22:18 +01:00
parent 5bea1d4535
commit 6da124508d
76 changed files with 2267 additions and 32 deletions

46
Model/clsSerienbrief.cs Normal file
View File

@@ -0,0 +1,46 @@
using System;
using System.Collections.Generic;
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 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;
}
}