a
    ghP                     @   s0   d dl mZmZ d dlmZ G dd deZdS )    )EmbeddedDocumentStringField)TimestampedMixinc                   @   sZ   e Zd ZdZeddddZedddZedddZedd	dZedd
dZ	edddZ
dS )Profilea  
    User Profile model for additional user information.

    Attributes:
        biography (str): A short biography or description of the user.
        avatar (str): URL or path to the user's profile picture.
        country (str): The user's country.
        language (str): The user's preferred language.
        timezone (str): The user's timezone information.
        phone (str): The user's contact phone number.

        z-A short biography or description of the user.)default
max_length	help_textz*URL or path to the user's profile picture.)r   r
   zThe user's country.zThe user's preferred language.z The user's timezone information.z The user's contact phone number.N)__name__
__module____qualname____doc__r   Z	biographyavatarZcountrylanguagetimezoneZphone r   r   /app/app/models/profile.pyr      s   r   N)mongoenginer   r   app.models.baser   r   r   r   r   r   <module>   s   