Skip to content

Instantly share code, notes, and snippets.

@arthurpalves
Created June 25, 2020 12:12
Show Gist options
  • Save arthurpalves/29dcb64ef89512baf6d578134db95174 to your computer and use it in GitHub Desktop.
Save arthurpalves/29dcb64ef89512baf6d578134db95174 to your computer and use it in GitHub Desktop.
enum ProductType {
case main, secondary
}
struct Product: Identifiable {
let id: String
let name: String
let balance: Double
let iban: String
let type: ProductType
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment