Много чего сделал
This commit is contained in:
@@ -46,3 +46,17 @@ class VetroProject:
|
||||
|
||||
def __str__(self):
|
||||
return self.title
|
||||
|
||||
@dataclass
|
||||
class Task:
|
||||
id: int
|
||||
subject: str
|
||||
description: str
|
||||
status: str
|
||||
priority: str
|
||||
author: str
|
||||
tracker: str
|
||||
project: str
|
||||
|
||||
def __str__(self):
|
||||
return f"#{self.id}: {self.subject}"
|
||||
|
||||
Reference in New Issue
Block a user