Skip to content

Instantly share code, notes, and snippets.

@Czajnikowski
Created June 3, 2017 10:49
Show Gist options
  • Save Czajnikowski/da90a7055136c2044f6a894c28614100 to your computer and use it in GitHub Desktop.
Save Czajnikowski/da90a7055136c2044f6a894c28614100 to your computer and use it in GitHub Desktop.
public class Contact: NSManagedObject {
@NSManaged public var name: String
@NSManaged public var surname: String
@NSManaged public var addresses: Set<Address>
}
public class Address: NSManagedObject {
@NSManaged public var city: String
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment