Update Test Gitlab-Wechsel

This commit is contained in:
2021-08-26 12:13:19 +02:00
parent 1746401541
commit f0289af9fe
2435 changed files with 6019 additions and 1780924 deletions

29
Models/ViewAdminFirmen.cs Normal file
View File

@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace BWPMModels
{
public class View_Admin_Firmen
{
public int ID { get; set; } = 0;
public string Expr1 { get; set; } = "";
public string plz { get; set; } = "";
public string ort { get; set; } = "";
public string tel { get; set; } = "";
public string mail { get; set; } = "";
public bool? aktiv { get; set; } = true;
public bool? aktuell { get; set; } = true;
public string berufe_plaetze { get; set; } = "";
}
}