mirror of
https://github.com/fastapi-practices/fastapi_best_architecture.git
synced 2026-03-13 09:31:31 +08:00
9 lines
162 B
Python
9 lines
162 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
from backend.common.schema import SchemaBase
|
|
|
|
|
|
class TaskRegisteredDetail(SchemaBase):
|
|
name: str
|
|
task: str
|