Files
karaoqueue/backend/karaoqueue-backend/src/models/appState.model.ts
Phillip Kühne 9b31131d5b Add appState
appState contains variables that indicate whether an event is
currently ongoing, and whether registration is currently allowed.
2020-10-03 23:41:45 +02:00

6 lines
109 B
TypeScript

class AppState {
registrationEnabled: boolean;
currentlyInEvent: boolean;
}
export default AppState;