Update 20241028
This commit is contained in:
46
Model/clsSerienbrief.cs
Normal file
46
Model/clsSerienbrief.cs
Normal 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;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user