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.
27 lines
578 B
27 lines
578 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BWPMModels
|
|
{
|
|
public class View_Berufsangebot
|
|
{
|
|
public int? firmaid { get; set; } = 0;
|
|
|
|
public string beruf { get; set; } = "";
|
|
|
|
public string ansprechpartner { get; set; } = "";
|
|
|
|
public string zeit { get; set; } = "";
|
|
|
|
public int? anzahl_plaetze { get; set; } = 0;
|
|
|
|
public string bemerkung { get; set; } = "";
|
|
|
|
public string schuelerbemerkung { get; set; } = "";
|
|
|
|
public string standortbemerkung { get; set; } = "";
|
|
|
|
}
|
|
}
|