o
    
h                     @   s&   d Z ddlmZ G dd dejZdS )z
Field-like classes that aren't really fields. It's easier to use objects that
have the same attributes as fields sometimes (avoids a lot of special casing).
    )fieldsc                       s    e Zd ZdZ fddZ  ZS )OrderWrtzn
    A proxy for the _order database field that is used when
    Meta.order_with_respect_to is specified.
    c                    s&   d|d< d|d< t  j|i | d S )N_ordernameFeditable)super__init__)selfargskwargs	__class__ _/var/www/html/optinet_system/venv/lib/python3.10/site-packages/django/db/models/fields/proxy.pyr      s   zOrderWrt.__init__)__name__
__module____qualname____doc__r   __classcell__r   r   r   r   r   	   s    r   N)r   django.db.modelsr   IntegerFieldr   r   r   r   r   <module>   s    