Skip to content

Commit

Permalink
[Fix] #275 - DiffableDataSource로 로직 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongdung-eo committed Aug 13, 2024
1 parent 8394674 commit 0ebb64d
Show file tree
Hide file tree
Showing 7 changed files with 222 additions and 130 deletions.
2 changes: 1 addition & 1 deletion GEON-PPANG-iOS/Domain/Entity/Base/BakeryOverview.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import Foundation

struct BakeryOverview {
struct BakeryOverview: Hashable {
let id: Int
let name: String
let image: String
Expand Down
2 changes: 1 addition & 1 deletion GEON-PPANG-iOS/Domain/Entity/Base/Certifications.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import Foundation

struct Certifications {
struct Certifications: Hashable {
let isHaccp: Bool
let isVegan: Bool
let isNonGMO: Bool
Expand Down
2 changes: 1 addition & 1 deletion GEON-PPANG-iOS/Domain/Entity/Base/Regions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import Foundation

struct Regions {
struct Regions: Hashable {
let firstRegion: String
let secondRegion: String?
}
2 changes: 1 addition & 1 deletion GEON-PPANG-iOS/Domain/Entity/Home/BestBakery.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import Foundation

struct BestBakery {
struct BestBakery: Hashable {
let overview: BakeryOverview
let certifications: Certifications
let bookmarkCount: Int
Expand Down
2 changes: 1 addition & 1 deletion GEON-PPANG-iOS/Domain/Entity/Home/BestReview.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import Foundation

struct BestReview {
struct BestReview: Hashable {
let overview: BakeryOverview
let reviewOverview: String
let recommendKeywords: [String]
Expand Down
Loading

0 comments on commit 0ebb64d

Please sign in to comment.