funky-framadate-front/src/app/shared/models/ui-config.model.ts

6 lines
147 B
TypeScript

import { Theme } from '../enums/theme.enum';
export class UIConfig {
constructor(public isMenuVisible = true, public theme: Theme.LIGHT) {}
}