co-maps/iphone/Maps/Classes/CarPlay/Templates Data/BookmarkInfo.swift

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
208 B
Swift
Raw Permalink Normal View History

2025-11-22 13:58:55 +01:00
struct BookmarkInfo: InfoMetadata {
let categoryId: UInt64
let bookmarkId: UInt64
init(categoryId: UInt64, bookmarkId: UInt64) {
self.categoryId = categoryId
self.bookmarkId = bookmarkId
}
}