AutoCat/AutoCatCore/Models/Cloneable.swift

12 lines
172 B
Swift

import Foundation
public protocol Cloneable {
init(copy: Self)
}
extension Cloneable {
public func clone() -> Self {
return Self.init(copy: self)
}
}