package com.socialapp.domain.model data class AppConfig( val app_name: String, val app_version: String, val description: String, val support_email: String, val support_phone: String, val website: String, val primary_color: String, val secondary_color: String, val accent_color: String, val text_color: String, val bg_color: String, val font_size: Int, val push_notifications: Boolean, val email_notifications: Boolean, val sms_notifications: Boolean, val max_post_size: Int, val max_video_duration: Int, val max_daily_posts: Int, val posts_per_page: Int, val min_account_age: Int, val require_email_verification: Boolean, val require_phone_verification: Boolean, val enable_two_factor: Boolean, val account_lockout_attempts: Int, val password_min_length: Int, val features: List )