Добавил новый датакласс для Деятельности трудочасов и настроил их динамическую подгрузку из Redmine

This commit is contained in:
2025-05-21 12:22:48 +03:00
parent aae6d8309a
commit 70232f15a0
8 changed files with 39 additions and 24 deletions

View File

@@ -30,3 +30,12 @@ class Tag:
def __str__(self):
return self.title
@dataclass
class ActivityType:
id: str
title: str
def __str__(self):
return self.title