Skip to content

Instantly share code, notes, and snippets.

@apatronl
Created July 11, 2020 16:35
Show Gist options
  • Save apatronl/cb4e09555efeca8949b968d513024d7b to your computer and use it in GitHub Desktop.
Save apatronl/cb4e09555efeca8949b968d513024d7b to your computer and use it in GitHub Desktop.
import Foundation
public struct EmojiDetails {
public let emoji: String
public let name: String
public let description: String
}
// MARK: - Identifiable
extension EmojiDetails: Identifiable {
public var id: String {
emoji
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment