Update vor Blazorise

This commit is contained in:
2021-08-17 21:40:36 +02:00
parent e16ec943e1
commit 1746401541
150 changed files with 26965 additions and 4583 deletions

View File

@@ -0,0 +1,26 @@
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; } = "";
}
}