Swiftgram/submodules/MergeLists/Sources/Identifiable.swift
2019-08-02 02:19:00 +03:00

7 lines
111 B
Swift

import Foundation
public protocol Identifiable {
associatedtype T: Hashable
var stableId: T { get }
}