8 lines
224 B
Python
8 lines
224 B
Python
from marshmallow import Schema, fields
|
|
|
|
|
|
class LCAWorkflowSchema(Schema):
|
|
city_file_path = fields.Str(required=True)
|
|
archetypes_file_name = fields.Str(required=True)
|
|
constructions_file_name = fields.Str(required=True)
|