Skip to content

Instantly share code, notes, and snippets.

@cristhianleonli
Last active September 11, 2022 22:41
Show Gist options
  • Save cristhianleonli/f9341abe3feb373c3c75b121cd5125b5 to your computer and use it in GitHub Desktop.
Save cristhianleonli/f9341abe3feb373c3c75b121cd5125b5 to your computer and use it in GitHub Desktop.
import Foundation
protocol Reusable {
static var reuseIdentifier: String { get }
}
extension Reusable {
static var reuseIdentifier: String {
return String(describing: self)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment