-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Bookmark table view model view viewmodel (#133)
* wip: MacBook to iMac * feat: mvvm 구조로 변경합니다.
- Loading branch information
Showing
32 changed files
with
1,355 additions
and
593 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 13 additions & 11 deletions
24
Box42.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
{ | ||
"pins" : [ | ||
{ | ||
"identity" : "snapkit", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/SnapKit/SnapKit.git", | ||
"state" : { | ||
"revision" : "f222cbdf325885926566172f6f5f06af95473158", | ||
"version" : "5.6.0" | ||
"object": { | ||
"pins": [ | ||
{ | ||
"package": "SnapKit", | ||
"repositoryURL": "https://github.com/SnapKit/SnapKit.git", | ||
"state": { | ||
"branch": null, | ||
"revision": "f222cbdf325885926566172f6f5f06af95473158", | ||
"version": "5.6.0" | ||
} | ||
} | ||
} | ||
], | ||
"version" : 2 | ||
] | ||
}, | ||
"version": 1 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// | ||
// BookmarkModel.swift | ||
// Box42 | ||
// | ||
// Created by Chan on 2023/09/04. | ||
// | ||
|
||
struct URLList: Codable { | ||
let urlList: [URLItem] | ||
} | ||
|
||
struct URLItem: Codable { | ||
let name: String | ||
let url: String | ||
} | ||
|
||
extension URLItem: Equatable { | ||
static func ==(lhs: URLItem, rhs: URLItem) -> Bool { | ||
return lhs.name == rhs.name && lhs.url == rhs.url | ||
} | ||
} |
Oops, something went wrong.