mirror of
https://github.com/283375/arcaea-offline-pyside-ui.git
synced 2025-11-14 08:22:13 +00:00
15 lines
331 B
Python
15 lines
331 B
Python
from dataclasses import dataclass
|
|
from typing import Optional
|
|
|
|
from PySide6.QtCore import QCoreApplication
|
|
from PySide6.QtGui import QIcon, QPixmap
|
|
|
|
|
|
@dataclass
|
|
class NavItem:
|
|
id: str
|
|
icon: Optional[QIcon | QPixmap | str] = None
|
|
|
|
def text(self):
|
|
return QCoreApplication.translate("NavItem", f"{self.id}.title")
|