/
Gabryelf
/
Icons-Customize-Gen
Обзор
Документация
Войти
/
Gabryelf
/
Icons-Customize-Gen
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
js/models/UserProfile.js
18 строк
609 B
Valeev Serj
update_to_version_0.0.1
15 июл 2026, 23:13
15 июл 2026, 23:13
68eecb6
Код
Авторство
О чём код?
// профиль пользователя // models/UserProfile.js export class UserProfile { constructor(data = {}) { this.theme = data.theme || 'dark'; this.language = data.language || 'ru'; this.engineSettings = data.engineSettings || { quality: 'high', snapToGrid: true, gridSize: 20, autoSave: true, autoSaveInterval: 30000 }; this.recentProjects = data.recentProjects || []; this.favoriteIcons = data.favoriteIcons || []; this.customCategories = data.customCategories || []; } }