Files
HospitalAssistantBackend/src/apps/users/v1/schema.py
Miwory 439cb147d8
All checks were successful
Build And Push / publish (push) Successful in 55s
Патч
2025-11-24 03:01:49 +03:00

12 lines
182 B
Python

from typing import TypedDict
class Notification(TypedDict):
id: int
title: str
description: str
class Notifications(TypedDict):
notifications: list[Notification]