[feat:] first project version
This commit is contained in:
20
Exam.cs
Normal file
20
Exam.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user