mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-07 13:03:54 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
10 lines
208 B
Swift
10 lines
208 B
Swift
struct BookmarkInfo: InfoMetadata {
|
|
let categoryId: UInt64
|
|
let bookmarkId: UInt64
|
|
|
|
init(categoryId: UInt64, bookmarkId: UInt64) {
|
|
self.categoryId = categoryId
|
|
self.bookmarkId = bookmarkId
|
|
}
|
|
}
|