-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MERGE] CurriculumView Diffable 및 MVVM(Combine)-C로 리팩터링 (#179)
- Loading branch information
Showing
11 changed files
with
397 additions
and
189 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
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
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
25 changes: 25 additions & 0 deletions
25
LionHeart-iOS/LionHeart-iOS/Scenes/Curriculum/Diffable/CurriculumViewDiffableModel.swift
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,25 @@ | ||
// | ||
// CurriculumViewDiffableModel.swift | ||
// LionHeart-iOS | ||
// | ||
// Created by 김민재 on 11/22/23. | ||
// | ||
|
||
import Foundation | ||
|
||
|
||
enum CurriculumViewSection: CaseIterable { | ||
case month2 | ||
case month3 | ||
case month4 | ||
case month5 | ||
case month6 | ||
case month7 | ||
case month8 | ||
case month9 | ||
case month10 | ||
} | ||
|
||
enum CurriculumViewItem: Hashable { | ||
case article(weekData: CurriculumDummyData) | ||
} |
Oops, something went wrong.