7 lines
161 B
Python
7 lines
161 B
Python
from marshmallow import Schema, fields
|
|
|
|
|
|
class AuthorizeRequestSchema(Schema):
|
|
username = fields.Str(required=True)
|
|
password = fields.Str(required=True)
|