- Add BookmarkLabel model and DTO - Create LabelsRepository and PLabelsRepository protocol - Add GetLabelsUseCase for fetching labels - Update BookmarkMapper to handle labels - Add LabelsView and LabelsViewModel for UI - Update BookmarksView and BookmarkLabelsView to display labels - Add green2 color asset for labels - Update API and repository layers to support labels
6 lines
104 B
Swift
6 lines
104 B
Swift
import Foundation
|
|
|
|
protocol PLabelsRepository {
|
|
func getLabels() async throws -> [BookmarkLabel]
|
|
}
|