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.
50 lines
1.8 KiB
50 lines
1.8 KiB
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 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 officevorlagenr { get; set; } = 0;
|
|
public string filename { get; set; }
|
|
public DataSet dsempfaenger { get; set; }
|
|
|
|
}
|
|
|
|
|
|
}
|