Created
March 22, 2017 18:18
-
-
Save bill350/8374f9de6ab25c55ac06383ebb49d4a8 to your computer and use it in GitHub Desktop.
FormItem base class
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
class FormItem { | |
var value: String? | |
var placeholder = "" | |
var indexPath: IndexPath? | |
var valueCompletion: ((String?) -> Void)? | |
var uiProperties = FormItemUIProperties() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment