diff --git a/Libraries/UI/Kit/Sources/Protocols/CellIdentifiable.swift b/Libraries/UI/Kit/Sources/Protocols/CellIdentifiable.swift new file mode 100644 index 0000000..d44056b --- /dev/null +++ b/Libraries/UI/Kit/Sources/Protocols/CellIdentifiable.swift @@ -0,0 +1,16 @@ +// +// CellIdentifiable.swift +// ReviewsUIKit +// +// Created by Javier Cicchelli on 21/03/2024. +// Copyright © 2024 Röck+Cöde VoF. All rights reserved. +// + +import UIKit + +public protocol CellIdentifiable: UITableViewCell { + + // MARK: Properties + static var cellID: String { get } + +}