Last active
August 20, 2016 15:36
-
-
Save charlag/83e3fe1181ead0e79f088ec6194a12b8 to your computer and use it in GitHub Desktop.
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
enum AuthCellType: String { | |
case Headline | |
case EmailTextField | |
case NameTextField | |
case PasswordTextField | |
case LoginButton | |
case Separator | |
} | |
extension AuthCellType: IdentifiableType { | |
var identity: String { return rawValue } | |
} | |
typealias AuthSection = AnimatableSectionModel<Int, AuthCellType> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment