hulai-admin-api/app/schemas/navigation.py
刘涛 8c0a5f489d Initial commit: hulai admin API backend
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-22 22:01:23 +08:00

23 行
408 B
Python

from __future__ import annotations
from pydantic import BaseModel
class NavLinkSchema(BaseModel):
text: str
to: str
class NavFooterLinkSchema(BaseModel):
text: str
to: str
class NavFooterGroupSchema(BaseModel):
title: str
links: list[NavFooterLinkSchema] = []
class NavigationSchema(BaseModel):
header: list[NavLinkSchema] = []
footer: list[NavFooterGroupSchema] = []