Skip to content

Instantly share code, notes, and snippets.

@bill350
Last active October 26, 2020 16:27
Show Gist options
  • Save bill350/22263978f489a1015c36248340713ecc to your computer and use it in GitHub Desktop.
Save bill350/22263978f489a1015c36248340713ecc to your computer and use it in GitHub Desktop.
/// Conform receiver to have data validation behavior
protocol FormValidable {
var isValid: Bool {get set}
var isMandatory: Bool {get set}
func checkValidity()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment