14 lines
267 B
Python
14 lines
267 B
Python
|
from apiflask import Schema
|
||
|
from apiflask.fields import String, URL, Float
|
||
|
|
||
|
|
||
|
class UserInfoIn(Schema):
|
||
|
nickname = String()
|
||
|
avatar_url = URL()
|
||
|
height = Float()
|
||
|
|
||
|
|
||
|
class UserInfoOut(Schema):
|
||
|
nickname = String()
|
||
|
avatar_url = URL()
|
||
|
height = Float()
|