More comments

This commit is contained in:
David Langley
2022-10-12 14:32:48 +01:00
parent f8da168065
commit b335de33aa
4 changed files with 45 additions and 13 deletions
@@ -18,8 +18,13 @@ import Foundation
// MARK: View model
enum ComposerCreateActionListViewModelResult: Equatable {
enum ComposerCreateActionListViewAction {
// The user selected an action
case selectAction(ComposerCreateAction)
}
enum ComposerCreateActionListViewModelResult: Equatable {
// The user selected an action and is done with the screen
case done(ComposerCreateAction)
}