Last active
August 30, 2019 15:24
-
-
Save agiletalk/c9f6e7d0437eb4f6abca7b8f9476db22 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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