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

10 lines
208 B
Swift
Raw 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
}
}