Created
January 25, 2018 00:13
-
-
Save efremidze/6012b8f3293d290afbecf49568612a55 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 Section { | |
case profile(Row0) | |
case privacy(Row1) | |
enum Row0: Int { | |
case name, username, password | |
} | |
enum Row1: Int { | |
case email, phone, gender | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment