17 @dataclass |
17 @dataclass |
18 class ProjectBrowserRepositoryItem: |
18 class ProjectBrowserRepositoryItem: |
19 """ |
19 """ |
20 Class holding the data associated with a project browser type. |
20 Class holding the data associated with a project browser type. |
21 """ |
21 """ |
|
22 |
22 projectBrowser: ProjectBaseBrowser |
23 projectBrowser: ProjectBaseBrowser |
23 projectBrowserUserString: str |
24 projectBrowserUserString: str |
24 priority: int # should be 0..100 |
25 priority: int # should be 0..100 |
25 fileCategory: str |
26 fileCategory: str |
|
27 fileFilter: str |
26 getIcon: Callable |
28 getIcon: Callable |
27 |
|