Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created March 4, 2020 14:36
Show Gist options
  • Save azamsharp/46ba66d474145fc8e5bae971c52369e1 to your computer and use it in GitHub Desktop.
Save azamsharp/46ba66d474145fc8e5bae971c52369e1 to your computer and use it in GitHub Desktop.
class RegistrationViewModel: ObservableObject {
@Validated(.required)
var firstname: String? = ""
@Validated(.required)
var lastname: String? = ""
@Validated(.required)
var username: String? = ""
@Validated(.required)
var password: String? = ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment