27 lines
578 B
C#
27 lines
578 B
C#
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; } = "";
|
|
|
|
}
|
|
}
|