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; } = ""; } }