[feat:] first project version

This commit is contained in:
Elias Fierke
2024-12-23 23:03:20 +01:00
parent 8c56577de0
commit 54d25ac155
8 changed files with 705 additions and 8 deletions

20
Exam.cs Normal file
View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
namespace PLG_Exam
{
public class Exam
{
public string Name { get; set; } = string.Empty;
public string Vorname { get; set; } = string.Empty;
public DateTime? Datum { get; set; }
public List<ExamTab> Tabs { get; set; } = new();
}
public class ExamTab
{
public string Aufgabennummer { get; set; } = string.Empty;
public string Überschrift { get; set; } = string.Empty;
public string Inhalt { get; set; } = string.Empty;
}
}