mirror of
https://github.com/koxudaxi/datamodel-code-generator.git
synced 2024-03-18 14:54:37 +03:00
8 lines
180 B
Django/Jinja
8 lines
180 B
Django/Jinja
{% for decorator in decorators -%}
|
|
{{ decorator }}
|
|
{% endfor -%}
|
|
class {{ class_name }}(Enum):
|
|
{%- for field in fields %}
|
|
{{ field.name }} = {{ field.default }}
|
|
{%- endfor -%}
|