-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
322 additions
and
3 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
27 changes: 27 additions & 0 deletions
27
iOS/Layover/Layover/Scenes/SettingScene/SettingSceneInteractor.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,27 @@ | ||
// | ||
// SettingSceneInteractor.swift | ||
// Layover | ||
// | ||
// Created by 황지웅 on 11/30/23. | ||
// Copyright © 2023 CodeBomber. All rights reserved. | ||
// | ||
|
||
import UIKit | ||
|
||
protocol SettingSceneBusinessLogic { | ||
|
||
} | ||
|
||
protocol SettingSceneDataStore { | ||
|
||
} | ||
|
||
final class SettingSceneInteractor: SettingSceneBusinessLogic, SettingSceneDataStore { | ||
|
||
// MARK: - Properties | ||
|
||
typealias Models = SettingSceneModels | ||
|
||
lazy var worker = SettingSceneWorker() | ||
var presenter: SettingScenePresentationLogic? | ||
} |
24 changes: 24 additions & 0 deletions
24
iOS/Layover/Layover/Scenes/SettingScene/SettingSceneModels.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,24 @@ | ||
// | ||
// SettingSceneModels.swift | ||
// Layover | ||
// | ||
// Created by 황지웅 on 11/30/23. | ||
// Copyright © 2023 CodeBomber. All rights reserved. | ||
// | ||
|
||
import UIKit | ||
|
||
enum SettingSceneModels { | ||
|
||
enum PerformSettingScene { | ||
struct Request { | ||
var exampleVariable: String? | ||
} | ||
|
||
struct Response { | ||
} | ||
|
||
struct ViewModel { | ||
} | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
iOS/Layover/Layover/Scenes/SettingScene/SettingScenePresenter.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,22 @@ | ||
// | ||
// SettingScenePresenter.swift | ||
// Layover | ||
// | ||
// Created by 황지웅 on 11/30/23. | ||
// Copyright © 2023 CodeBomber. All rights reserved. | ||
// | ||
|
||
import UIKit | ||
|
||
protocol SettingScenePresentationLogic { | ||
|
||
} | ||
|
||
final class SettingScenePresenter: SettingScenePresentationLogic { | ||
|
||
// MARK: - Properties | ||
|
||
typealias Models = SettingSceneModels | ||
weak var viewController: SettingSceneDisplayLogic? | ||
|
||
} |
27 changes: 27 additions & 0 deletions
27
iOS/Layover/Layover/Scenes/SettingScene/SettingSceneRouter.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,27 @@ | ||
// | ||
// SettingSceneRouter.swift | ||
// Layover | ||
// | ||
// Created by 황지웅 on 11/30/23. | ||
// Copyright © 2023 CodeBomber. All rights reserved. | ||
// | ||
|
||
import UIKit | ||
|
||
protocol SettingSceneRoutingLogic { | ||
} | ||
|
||
protocol SettingSceneDataPassing { | ||
var dataStore: SettingSceneDataStore? { get } | ||
} | ||
|
||
final class SettingSceneRouter: NSObject, SettingSceneRoutingLogic, SettingSceneDataPassing { | ||
|
||
// MARK: - Properties | ||
|
||
weak var viewController: SettingSceneViewController? | ||
var dataStore: SettingSceneDataStore? | ||
|
||
// MARK: - Routing | ||
|
||
} |
Oops, something went wrong.