Skip to content

Instantly share code, notes, and snippets.

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