refactor(User): Aktualisierung des User-Modells.

This commit is contained in:
2025-07-22 14:15:35 +02:00
parent 06303ec2b5
commit de360968dc
3 changed files with 15 additions and 3 deletions

View File

@@ -8,6 +8,8 @@ export interface User {
language?: string;
comment?: string;
deleted?: boolean;
deletedWhen?: Date;
deletedWho?: string;
dateFormat?: string;
addedWho?: string;
addedWhen?: Date;
@@ -70,7 +72,7 @@ export interface UserRep {
repUser?: User
user?: User,
repGroup?: Group,
group?: Group,
group?: Group,
}
export interface DirGroup {