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.
30 lines
584 B
30 lines
584 B
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; } = "";
|
|
|
|
}
|
|
|
|
}
|