Základ zobrazování ověřených uživatelů

This commit is contained in:
2023-07-30 23:36:18 +02:00
parent 028186c8ea
commit 8a75c98c9a
6 changed files with 79 additions and 22 deletions

View File

@@ -5,9 +5,14 @@ export enum Restaurants {
TECHTOWER = 'techTower',
}
export interface FoodChoices {
trusted: boolean,
options: number[]
}
export interface Choices {
[location: string]: {
[login: string]: number[]
[login: string]: FoodChoices
},
}