Патч
Some checks failed
Build And Push / publish (push) Has been cancelled

This commit is contained in:
2025-11-27 13:28:58 +03:00
parent 45a4123708
commit f3c9cb42d6
12 changed files with 172 additions and 88 deletions

View File

@ -1,11 +1,11 @@
from typing import TypedDict
class Notification(TypedDict):
id: int
title: str
description: str
from pydantic import BaseModel
class Notifications(TypedDict):
notifications: list[Notification]
notifications: list[dict[str, str | bool]]
class Complaints(BaseModel):
complaints: str