12 lines
182 B
Python
12 lines
182 B
Python
from typing import TypedDict
|
|
|
|
|
|
class Notification(TypedDict):
|
|
id: int
|
|
title: str
|
|
description: str
|
|
|
|
|
|
class Notifications(TypedDict):
|
|
notifications: list[Notification]
|