13 lines
283 B
Python
13 lines
283 B
Python
from applications.extensions import ma
|
|
from marshmallow import fields
|
|
|
|
|
|
class PhotoSchema(ma.Schema):
|
|
id = fields.Integer()
|
|
name = fields.Str()
|
|
href = fields.Str()
|
|
mime = fields.Str()
|
|
size = fields.Str()
|
|
ext = fields.Str()
|
|
create_time = fields.DateTime()
|