6 lines
114 B
TypeScript
Raw Normal View History

2024-05-26 17:16:20 +02:00
export interface User {
id: number,
username: string,
mail: string,
accessControlList: string[],
}