mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-15 04:17:41 +08:00
17 lines
259 B
Python
17 lines
259 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class NoticeItem(BaseModel):
|
|
id: int
|
|
title: str
|
|
contentMd: str
|
|
isPopup: bool
|
|
createdAt: int
|
|
|
|
|
|
class NoticeListResponse(BaseModel):
|
|
items: list[NoticeItem]
|
|
page: int
|
|
pageSize: int
|
|
total: int
|