Mitarbeit bewerten begonnen, Schülerdaten, Gruppen
This commit is contained in:
@@ -16,9 +16,27 @@ public class Student
|
||||
}
|
||||
public class Contact
|
||||
{
|
||||
public Guid Id { get; set; } = Guid.NewGuid();
|
||||
public string Name { get; set; } = "";
|
||||
public string Relation { get; set; } = "";
|
||||
public string? Phone { get; set; }
|
||||
public string? Email { get; set; }
|
||||
public string? Street { get; set; }
|
||||
public string? PostalCode { get; set; }
|
||||
public string? City { get; set; }
|
||||
public DateOnly? InvalidSince { get; set; }
|
||||
public ContactInvalidReason? InvalidReason { get; set; }
|
||||
public string? InvalidReasonDetails { get; set; }
|
||||
}
|
||||
|
||||
public enum ContactInvalidReason
|
||||
{
|
||||
Moved,
|
||||
NewPhoneNumber,
|
||||
LostCustody,
|
||||
NewEmailAddress,
|
||||
NoLongerResponsible,
|
||||
Other,
|
||||
}
|
||||
|
||||
public enum Gender { M, W, D }
|
||||
|
||||
Reference in New Issue
Block a user