Files
marketplaces/src/app/shared/models/domain/user-preferences.model.ts

9 lines
205 B
TypeScript
Raw Normal View History

export interface UserPreferences {
locale: string;
currency: string;
themeMode: 'light' | 'dark' | 'system';
compactMode?: boolean;
wishlistEnabled?: boolean;
notificationsEnabled?: boolean;
}