Skip to content

Instantly share code, notes, and snippets.

import UIKit
class Contact: Codable {
var name = ""
var photoURL: String = ""
var id = ""
init(name: String, photoURL: String, id: String) {
self.name = name
self.photoURL = photoURL