Files
LehrerApp/LehrerApp.Core/Models/LearningGroup.cs
2026-03-29 23:47:31 +02:00

34 lines
1.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace LehrerApp.Core.Models;
public class LearningGroup
{
public Guid Id { get; set; } = Guid.NewGuid();
public string Name { get; set; } = ""; // "10E", "Q1 Chemie"
public GroupType Type { get; set; }
public string? Subject { get; set; } // "Chemie", "Mathematik"
public string SchoolYear { get; set; } = ""; // "2024/25"
public int GradeLevel { get; set; } // 5, 10, 11, 12 ...
public GradingSystem GradingSystem { get; set; }
public int? HoursPerWeek { get; set; }
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
}
public class Enrollment
{
public Guid Id { get; set; } = Guid.NewGuid();
public Guid StudentId { get; set; }
public Guid GroupId { get; set; }
public string SchoolYear { get; set; } = "";
public DateOnly EnrolledAt { get; set; } = DateOnly.FromDateTime(DateTime.Today);
public DateOnly? LeftAt { get; set; } // bei Wechsel mid-year
}
public enum GroupType { Class, Course }
public enum GradingSystem
{
Grades1To6, // Noten 16 (Sek I)
Points0To15, // Punkte 015 (Oberstufe)
}