Skip to content

Instantly share code, notes, and snippets.

@atimca
Created June 19, 2020 09:17
Show Gist options
  • Save atimca/988665d8f633fa2e3797ab8a6e0e96f2 to your computer and use it in GitHub Desktop.
Save atimca/988665d8f633fa2e3797ab8a6e0e96f2 to your computer and use it in GitHub Desktop.
enum AppEvent {
case newUserWasLoaded(User)
case newsEvents(NewsEvent)
var newsEvent: NewsEvent? {
guard case .newsEvents(let event) = self else { return nil }
return event
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment