Update Test Gitlab-Wechsel

This commit is contained in:
2021-08-26 12:13:19 +02:00
parent 1746401541
commit f0289af9fe
2435 changed files with 6019 additions and 1780924 deletions

View File

@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace BWPMModels
{
public class LehrerKlassenuebersicht
{
public int ID { get; set; } = 0;
public string Schulhaus { get; set; } = "";
public string Klasse { get; set; } = "";
public int? Klassengroesse { get; set; } = 0;
public int? Anzahl_Schuler { get; set; } = 0;
public int? Schuler_Komplett { get; set; } = 0;
public int? Schueler_nicht_komplett { get; set; } = 0;
public int LehrerID { get; set; } = 0;
}
}