Skip to content

Instantly share code, notes, and snippets.

@agiletalk
Last active August 30, 2019 15:24
Show Gist options
  • Save agiletalk/c9f6e7d0437eb4f6abca7b8f9476db22 to your computer and use it in GitHub Desktop.
Save agiletalk/c9f6e7d0437eb4f6abca7b8f9476db22 to your computer and use it in GitHub Desktop.
protocol FeedItem: Codable {
var type: FeedType { get }
}
enum FeedType: String, Codable {
case job
case company
case content
case event
case theme
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment