Skip to content

Instantly share code, notes, and snippets.

@aGupieWare
Created November 6, 2014 21:26
Show Gist options
  • Select an option

  • Save aGupieWare/ff7ca05398388a45c3f1 to your computer and use it in GitHub Desktop.

Select an option

Save aGupieWare/ff7ca05398388a45c3f1 to your computer and use it in GitHub Desktop.
Code snippet for Swift client plumbing supply item class implementation
var bsn_id : String? = ""
var bsn_name : String? = ""
var bsn_image : String? = ""
var bsn_description : String? = ""
init(var bsn_id : String?, var bsn_name : String?, var bsn_image : String?, var bsn_description : String?) {
self.bsn_id = bsn_id
self.bsn_name = bsn_name
self.bsn_image = bsn_image
self.bsn_description = bsn_description
super.init();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment