Created
July 5, 2021 22:42
-
-
Save barefeettom/b1c1fa6092a90dc8dc5f39e2500d7142 to your computer and use it in GitHub Desktop.
Part of the tutorial series "Build an app like Lego, Using SwiftUI". https://medium.com/p/184fda9d0c86/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct Product: Identifiable { | |
let id: Int | |
let name: String | |
let description: String | |
let price: Double | |
let imageName: String | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment